We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97443cd commit aa3292fCopy full SHA for aa3292f
lib/services/ios-project-service.ts
@@ -230,7 +230,7 @@ class IOSProjectService implements IPlatformProjectService {
230
this.$errors.failWithoutHelp("The bundle at %s does not contain an Info.plist file.", libraryPath);
231
}
232
233
- var packageType = this.$childProcess.exec('/usr/libexec/PlistBuddy -c "Print :CFBundlePackageType" ' + infoPlistPath).wait().trim();
+ var packageType = this.$childProcess.exec(`/usr/libexec/PlistBuddy -c "Print :CFBundlePackageType" "${infoPlistPath}"`).wait().trim();
234
if (packageType !== "FMWK") {
235
this.$errors.failWithoutHelp("The bundle at %s does not appear to be a dynamic framework.", libraryPath);
236
0 commit comments