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": {} } ] }