We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bffb555 commit a8ac0feCopy full SHA for a8ac0fe
lib/services/ios-project-service.ts
@@ -201,7 +201,7 @@ class IOSProjectService implements IPlatformProjectService {
201
this.$errors.failWithoutHelp("The bundle at %s does not contain an Info.plist file.", libraryPath);
202
}
203
204
- var packageType = this.$childProcess.exec(util.format("/usr/libexec/PlistBuddy -c \"Print :CFBundlePackageType\" %s", infoPlistPath)).wait().trim();
+ var packageType = this.$childProcess.exec('/usr/libexec/PlistBuddy -c "Print :CFBundlePackageType" ' + infoPlistPath).wait().trim();
205
if (packageType !== "FMWK") {
206
this.$errors.failWithoutHelp("The bundle at %s does not appear to be a dynamic framework.", libraryPath);
207
0 commit comments