mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2025-01-09 08:30:15 +00:00
Add quotes around signing identity to allow spaces
This commit is contained in:
parent
81340093ee
commit
c1269f62c8
2
mac.js
2
mac.js
@ -117,7 +117,7 @@ function buildMacApp (opts, cb, newApp) {
|
|||||||
|
|
||||||
if (!opts.sign) return cb(null, appPath)
|
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)
|
cb(err, appPath)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user