mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 05:07:35 +00:00
wip: attempt to sign uninstaller
This commit is contained in:
@@ -42,7 +42,11 @@ function packageInnoSetup(iss, options, cb) {
|
||||
keys.forEach(key => assert(typeof definitions[key] === 'string', `Missing value for '${key}' in Inno Setup package step`));
|
||||
|
||||
const defs = keys.map(key => `/d${key}=${definitions[key]}`);
|
||||
const args = [iss].concat(defs);
|
||||
const args = [
|
||||
iss,
|
||||
'/Sesrp="powershell.exe build\tfs\win32\sign.ps1 $f"',
|
||||
...defs
|
||||
];
|
||||
|
||||
cp.spawn(innoSetupPath, args, { stdio: ['ignore', 'inherit', 'inherit'] })
|
||||
.on('error', cb)
|
||||
|
||||
Reference in New Issue
Block a user