mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-11 15:51:06 +00:00
Merge pull request #69 from mmuehlberger/master
Add quotes around signing identity to allow spaces
This commit is contained in:
commit
5b1c5477f6
2
mac.js
2
mac.js
@ -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)
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user