Skip to content

Commit 8736d90

Browse files
authored
fix(cli): Improve plugin.xml framework detection (#2956)
1 parent 6d1778b commit 8736d90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/ios/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function getFrameworkName(framework: any) {
113113
}
114114

115115
function isFramework(framework: any) {
116-
return framework.$.src.split('.').pop() === 'framework';
116+
return framework.$.src.split('.').pop().includes('framework');
117117
}
118118

119119
async function generateCordovaPodspecs(cordovaPlugins: Plugin[], config: Config) {

0 commit comments

Comments
 (0)