sign-windows: Put quotes around paths provided to sign script
This commit is contained in:
parent
ebd5397bb5
commit
a2cfaa81a4
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ export async function sign(
|
|||
const target = await realpath(configuration.path);
|
||||
|
||||
// The script will update the file in-place
|
||||
const returnCode = execSync(`bash ${scriptPath} ${target}`, {
|
||||
const returnCode = execSync(`bash "${scriptPath}" "${target}"`, {
|
||||
stdio: [null, process.stdout, process.stderr],
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue