1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-27 03:53:00 +02:00

listing all of the files that electron-builder is trying to sign

This commit is contained in:
Joseph Flinn 2021-01-15 15:37:49 +00:00
parent 67367bb71b
commit 81a5c77b5e

View File

@ -1,5 +1,7 @@
exports.default = async function(configuration) { exports.default = async function(configuration) {
if (parseInt(process.env.ELECTRON_BUILDER_SIGN) === 1) { if (parseInt(process.env.ELECTRON_BUILDER_SIGN) === 1) {
console.log(`[++] File to sign: ${configuration.path}`)
/*
require("child_process").execSync( require("child_process").execSync(
`azuresigntool sign ` + `azuresigntool sign ` +
`-kvu ${process.env.SIGNING_VAULT_URL} ` + `-kvu ${process.env.SIGNING_VAULT_URL} ` +
@ -15,5 +17,6 @@ exports.default = async function(configuration) {
stdio: "inherit" stdio: "inherit"
} }
); );
*/
} }
}; };