Skip to content

Commit

Permalink
Fix signing with alternative publisher key (#1020)
Browse files Browse the repository at this point in the history
  • Loading branch information
mherrmann authored Dec 9, 2024
1 parent 6842fe2 commit fd9c9cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const generateCRXFile = (binary, crxFile, privateKeyFile, publisherProofKey,
`--user-data-dir=${tempUserDataDir}`,
`--brave-extension-publisher-key=${path.resolve(publisherProofKey)}`]
if (publisherProofKeyAlt) {
args.push(`--brave-extension-publisher-key-alt=${path.resolve(publisherProofKey)}`)
args.push(`--brave-extension-publisher-key-alt=${path.resolve(publisherProofKeyAlt)}`)
}
const originalOutput = `${inputDir}.crx`
childProcess.execSync(`${binary} ${args.join(' ')}`)
Expand Down

0 comments on commit fd9c9cc

Please sign in to comment.