Skip to content

Commit

Permalink
fix: additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Dec 2, 2022
1 parent f00e34c commit 92ff2a1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/commands/pack/win.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,11 @@ async function signWindows(o: string, arch: string, config: Interfaces.Config, w
'-in', buildLocationUnsigned,
'-out', o,
]
await exec(`osslsigncode ${args.join(' ')}`)

console.log(`key exists at ${windows.keypath} : ${fs.existsSync(windows.keypath)}`)
console.log(`input file exists at ${buildLocationUnsigned} : ${fs.existsSync(buildLocationUnsigned)}`)
const signCommand = `osslsigncode ${args.join(' ')}`
console.log(`will run sign command : ${signCommand}`)
await exec(signCommand)
}

0 comments on commit 92ff2a1

Please sign in to comment.