2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-09-22 09:39:02 +00:00

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

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)
})
}