Skip to content

Commit 5821b39

Browse files
committed
Fix MSI builder
1 parent 086e480 commit 5821b39

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build-conf.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const config = {
1313
outPath: path.resolve('.electrify/dist'),
1414
installFolderName: 'QRL',
1515
icon: path.resolve('.electrify/assets/qrl.ico'),
16+
exeName: 'QRLWallet',
1617
},
1718
macos: {
1819
electronPath: path.resolve('.electrify/.dist/QRLWallet-darwin-x64/QRLWallet.app'),

build-msi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const buildConfig = require('./build-conf.js')
55
const msiCreator = new MSICreator({
66
appDirectory: buildConfig.windows.electronPath,
77
description: buildConfig.name,
8-
exe: buildConfig.safeName,
8+
exe: buildConfig.windows.exeName,
99
name: buildConfig.name,
1010
manufacturer: buildConfig.manufacturer,
1111
version: buildConfig.version,

0 commit comments

Comments
 (0)