Skip to content

Commit

Permalink
Update default exe name
Browse files Browse the repository at this point in the history
  • Loading branch information
acrosman committed Oct 7, 2023
1 parent adcd1c9 commit e8e0254
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ const { utils: { fromBuildIdentifier } } = require('@electron-forge/core');
module.exports = {
buildIdentifier: process.env.IS_BETA ? 'beta' : 'prod',
packagerConfig: {
appBundleId: fromBuildIdentifier({ beta: 'com.beta.acrosman.sf-bar', prod: 'com.sf-base' }),
appBundleId: fromBuildIdentifier({ beta: 'com.beta.acrosman.sf-bar', prod: 'com.sfBase' }),
},
rebuildConfig: {},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {
exe: 'sf-base.exe',
name: 'sf-base',
exe: 'sfBase.exe',
name: 'sfBase',
authors: 'Aaron Crosman',
},
},
Expand All @@ -39,7 +39,7 @@ module.exports = {
config: {
repository: {
owner: 'acrosman',
name: 'sf-base',
name: 'sfBase',
},
prerelease: false,
draft: true,
Expand Down

0 comments on commit e8e0254

Please sign in to comment.