We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9280aa9 commit f40dbc1Copy full SHA for f40dbc1
lib/services/ios-project-service.ts
@@ -268,7 +268,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
268
let project = this.createPbxProj();
269
let frameworkName = path.basename(frameworkPath, path.extname(frameworkPath));
270
let frameworkBinaryPath = path.join(frameworkPath, frameworkName);
271
- let isDynamic = _.contains(this.$childProcess.exec(`otool -Vh ${frameworkBinaryPath}`).wait(), " DYLIB ");
+ let isDynamic = _.contains(this.$childProcess.exec(`otool -Vh "${frameworkBinaryPath}"`).wait(), " DYLIB ");
272
273
let frameworkAddOptions: xcode.Options = { customFramework: true };
274
0 commit comments