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 fef99b3 commit 0533482Copy full SHA for 0533482
lib/services/ios-project-service.ts
@@ -202,7 +202,7 @@ class IOSProjectService implements IPlatformProjectService {
202
}
203
204
var packageType = this.$childProcess.exec(util.format("/usr/libexec/PlistBuddy -c \"Print :CFBundlePackageType\" %s", infoPlistPath)).wait().trim();
205
- if (packageType != "FMWK") {
+ if (packageType !== "FMWK") {
206
this.$errors.failWithoutHelp("The bundle at %s does not appear to be a dynamic framework.", libraryPath);
207
208
}).future<void>()();
0 commit comments