From 9fcbea00c2a3423b159455b65850ddb9f0e8df4f Mon Sep 17 00:00:00 2001 From: Venipa Date: Thu, 8 Aug 2019 10:18:07 +0200 Subject: [PATCH] :zap: changed x64 config to actual x64 config electron should run with the x64 binary now! --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 07008ba8e..f6b3a2ee9 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,9 @@ "scripts": { "start": "electron .", "pack": "npx electron-builder --dir", - "pack:x64": "npm run pack -- --arch x64", + "pack:x64": "npm run pack -- --arch x64 --config electron-builder64.yml", "dist": "npx electron-builder", - "dist:x64": "npm run dist -- --arch x64", + "dist:x64": "npm run dist -- --arch x64 --config electron-builder64.yml", "publish:win64": "build --win -p always --config electron-builder64.yml", "publish:win32": "build --win -p always --config electron-builder.yml", "publish:win": "npm run publish:win32 && npm run publish:win64",