Skip to content

Commit

Permalink
Merge pull request #7019 from cb1kenobi/timob-19337
Browse files Browse the repository at this point in the history
[TIMOB-19337] Fixed bug where keychain code sign flag was not being q…
  • Loading branch information
cb1kenobi committed Aug 11, 2015
2 parents 5ccddf7 + bdaae6a commit 8c7083c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -2539,7 +2539,7 @@ iOSBuilder.prototype.createXcodeProject = function createXcodeProject(next) {
buildSettings.PROVISIONING_PROFILE = '"' + this.provisioningProfileUUID + '"';
buildSettings.DEPLOYMENT_POSTPROCESSING = 'YES';
if (this.keychain) {
buildSettings.OTHER_CODE_SIGN_FLAGS = '--keychain ' + this.keychain;
buildSettings.OTHER_CODE_SIGN_FLAGS = '"--keychain ' + this.keychain + '"';
}
}

Expand Down Expand Up @@ -2822,7 +2822,7 @@ iOSBuilder.prototype.createXcodeProject = function createXcodeProject(next) {
extBuildSettings.PROVISIONING_PROFILE = '"' + target.ppUUIDs[this.target] + '"';
extBuildSettings.DEPLOYMENT_POSTPROCESSING = 'YES';
if (this.keychain) {
extBuildSettings.OTHER_CODE_SIGN_FLAGS = '--keychain ' + this.keychain;
extBuildSettings.OTHER_CODE_SIGN_FLAGS = '"--keychain ' + this.keychain + '"';
}
}

Expand Down

0 comments on commit 8c7083c

Please sign in to comment.