Skip to content

Commit

Permalink
fix: osslsign command requires "sign"
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Dec 5, 2022
1 parent 43b0a5f commit bea088d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/pack/win.ts
Expand Up @@ -283,12 +283,12 @@ async function signWindows(o: string, arch: string, config: Interfaces.Config, w
const args = [
'-pkcs12', windows.keypath,
'-pass', pass,
'-n', windows.name,
'-n', `"${windows.name}"`,
'-i', windows.homepage || config.pjson.homepage,
'-h', 'sha512',
'-in', buildLocationUnsigned,
'-out', o,
]
await exec(`osslsigncode ${args}.join(' ')`)
await exec(`osslsigncode sign ${args}.join(' ')`)
}

0 comments on commit bea088d

Please sign in to comment.