Skip to content

Commit 0533482

Browse files
author
Mihail Slavchev
committed
use strict equals
1 parent fef99b3 commit 0533482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/ios-project-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class IOSProjectService implements IPlatformProjectService {
202202
}
203203

204204
var packageType = this.$childProcess.exec(util.format("/usr/libexec/PlistBuddy -c \"Print :CFBundlePackageType\" %s", infoPlistPath)).wait().trim();
205-
if (packageType != "FMWK") {
205+
if (packageType !== "FMWK") {
206206
this.$errors.failWithoutHelp("The bundle at %s does not appear to be a dynamic framework.", libraryPath);
207207
}
208208
}).future<void>()();

0 commit comments

Comments
 (0)