Skip to content

Commit 7422425

Browse files
committed
CB-8436 Remove more bad quotes from build command
1 parent 2bef65e commit 7422425

File tree

1 file changed

+2
-2
lines changed
  • bin/templates/scripts/cordova/lib

1 file changed

+2
-2
lines changed

bin/templates/scripts/cordova/lib/build.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ function getXcodeArgs(projectName, projectPath, configuration, isDevice) {
112112
xcodebuildArgs = [
113113
'-xcconfig', path.join(__dirname, '..', 'build-' + configuration.toLowerCase() + '.xcconfig'),
114114
'-project', projectName + '.xcodeproj',
115-
'ARCHS="i386"',
115+
'ARCHS=i386',
116116
'-target', projectName ,
117117
'-configuration', configuration,
118118
'-sdk', 'iphonesimulator',
119119
'build',
120-
'VALID_ARCHS="i386"',
120+
'VALID_ARCHS=i386',
121121
'CONFIGURATION_BUILD_DIR=' + path.join(projectPath, 'build', 'emulator'),
122122
'SHARED_PRECOMPS_DIR=' + path.join(projectPath, 'build', 'sharedpch')
123123
];

0 commit comments

Comments
 (0)