Merge pull request #69 from mmuehlberger/master

Add quotes around signing identity to allow spaces
This commit is contained in:
jden 2015-06-16 10:37:24 -07:00
commit 5b1c5477f6
1 changed files with 1 additions and 1 deletions

2
mac.js
View File

@ -117,7 +117,7 @@ function buildMacApp (opts, cb, newApp) {
if (!opts.sign) return cb(null, appPath)
child.exec('codesign --deep --force --sign ' + opts.sign + ' ' + appPath, function (err, stdout, stderr) {
child.exec('codesign --deep --force --sign "' + opts.sign + '" ' + appPath, function (err, stdout, stderr) {
cb(err, appPath)
})
}