From db5c04e7de79512b2fb7c36a2d806d3eaae27160 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Wed, 30 Dec 2020 22:06:48 +0000 Subject: [PATCH] debugging configuration object to see what I've got to work with --- package.json | 1 + sign.js | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6014cb126d..e1870315cb 100644 --- a/package.json +++ b/package.json @@ -120,6 +120,7 @@ "nsis-web", "appx" ], + "sign": "./sign.js", "extraResources": [ { "from": "node_modules/regedit/vbs", diff --git a/sign.js b/sign.js index 1a96ae4e02..4458ecbc5c 100644 --- a/sign.js +++ b/sign.js @@ -1,9 +1,8 @@ exports.default = async function(configuration) { + console.log(`config:\n${JSON.stringify(configuration)}`) require("child_process").execSync( - `echo - "${configuration}" - `, + `echo 'Heyo!'`, { stdio: "inherit" }