Missing space
also don't print the signing command line as it has the token password
This commit is contained in:
parent
5a7efcd738
commit
1ff06c4be4
|
@ -46,7 +46,7 @@ exports.default = async function(context) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
let cmdLine = 'osslsigncode sign ';
|
let cmdLine = 'osslsigncode sign ';
|
||||||
if (process.env.OSSLSIGNCODE_SIGNARGS) {
|
if (process.env.OSSLSIGNCODE_SIGNARGS) {
|
||||||
cmdLine += process.env.OSSLSIGNCODE_SIGNARGS + '';
|
cmdLine += process.env.OSSLSIGNCODE_SIGNARGS + ' ';
|
||||||
}
|
}
|
||||||
const tmpFile = 'tmp_' + Math.random().toString(36).substring(2, 15) + '.exe';
|
const tmpFile = 'tmp_' + Math.random().toString(36).substring(2, 15) + '.exe';
|
||||||
cmdLine += shellescape([
|
cmdLine += shellescape([
|
||||||
|
@ -54,7 +54,6 @@ exports.default = async function(context) {
|
||||||
'-in', `${appOutDir}/${appName}.exe`,
|
'-in', `${appOutDir}/${appName}.exe`,
|
||||||
'-out', `${appOutDir}/${tmpFile}`,
|
'-out', `${appOutDir}/${tmpFile}`,
|
||||||
]);
|
]);
|
||||||
console.log(cmdLine);
|
|
||||||
|
|
||||||
const signproc = exec(cmdLine, {}, (error, stdout) => {
|
const signproc = exec(cmdLine, {}, (error, stdout) => {
|
||||||
console.log(stdout);
|
console.log(stdout);
|
||||||
|
|
Loading…
Reference in New Issue