mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-24 11:55:50 +01:00
assigning correct type
This commit is contained in:
parent
5eb10afe85
commit
b1e4bd4bdb
2
sign.js
2
sign.js
@ -5,7 +5,7 @@ exports.default = async function(configuration) {
|
||||
console.log(`Type: ${typeof process.env.ELECTRON_BUILDER_SIGN}`)
|
||||
console.log('+++++++++++++++++++++++++++++++++++++++++++++++++++')
|
||||
|
||||
if (process.env.ELECTRON_BUILDER_SIGN === 1) {
|
||||
if (parseInt(process.env.ELECTRON_BUILDER_SIGN) === 1) {
|
||||
require("child_process").execSync(
|
||||
`azuresigntool sign ` +
|
||||
`-kvu ${process.env.SIGNING_VAULT_URL} ` +
|
||||
|
Loading…
Reference in New Issue
Block a user