From 45dfca07cc6d9a49c2816b776963c41b79314874 Mon Sep 17 00:00:00 2001 From: Shjorty <201505261@post.au.dk> Date: Tue, 7 Jun 2022 20:20:02 +0200 Subject: [PATCH] More windows skipSigning check more lenient --- scripts/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.js b/scripts/build.js index b38c75585..81ee85998 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -7,7 +7,7 @@ const fs = require('fs'); const builder = require('electron-builder'); const targetNet = process.env.TARGET_NET; -const skipSigning = process.env.SIGNING === 'skip'; +const skipSigning = process.env.SIGNING.includes('skip'); let name; let productName;