From 9eaf940cb6bdadb140ab9879a795f7e0b91ded99 Mon Sep 17 00:00:00 2001 From: Izuco Date: Tue, 15 Feb 2022 21:52:38 +0100 Subject: [PATCH] Linux fixes --- modules/build.ts | 2 +- package.json | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/modules/build.ts b/modules/build.ts index 6145943..2814a43 100644 --- a/modules/build.ts +++ b/modules/build.ts @@ -21,7 +21,7 @@ const nodeVer = 'node16-'; })(); async function buildGUI(buildType: string) { - execSync('npx electron-forge make'); + execSync('npx electron-forge make', { stdio: [0,1,2] }); const path = ['out', 'make']; const makerDir = fs.readdirSync(path.join(sep)); if (makerDir.length !== 1) diff --git a/package.json b/package.json index c2be943..1cec156 100644 --- a/package.json +++ b/package.json @@ -112,10 +112,6 @@ { "name": "@electron-forge/maker-deb", "config": {} - }, - { - "name": "@electron-forge/maker-rpm", - "config": {} } ] }