From 404e4130dabcd5d3137a74bbfca76e2d78537040 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Fri, 15 Jan 2021 16:00:55 +0000 Subject: [PATCH] seeing what file it fails on, specifically --- sign.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/sign.js b/sign.js index 68b2ac4289..8639b9b606 100644 --- a/sign.js +++ b/sign.js @@ -1,7 +1,6 @@ exports.default = async function(configuration) { if (parseInt(process.env.ELECTRON_BUILDER_SIGN) === 1) { console.log(`[++] File to sign: ${configuration.path}`) - /* require("child_process").execSync( `azuresigntool sign ` + `-kvu ${process.env.SIGNING_VAULT_URL} ` + @@ -17,6 +16,5 @@ exports.default = async function(configuration) { stdio: "inherit" } ); - */ } };