Skip to content

Commit 4339fa7

Browse files
committed
fix: rename Windows Squirrel output to drop misleading 'Setup' wording
Squirrel.Windows names its generated bootstrapper '<name> Setup.exe' by default, which reads like a traditional installer to end users. It's actually a self-contained Squirrel updater/bootstrapper, so name it neutrally instead: MetaLens-<version>-win-x64.exe.
1 parent 2755719 commit 4339fa7

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

electron/forge.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ module.exports = {
3232
config: {
3333
name: 'MetaLens',
3434
setupIcon: path.join(__dirname, '..', 'frontend', 'public', 'icon.ico'),
35+
// Squirrel names the generated file "<name> Setup.exe" by default, which
36+
// reads as a traditional installer — it's actually a self-contained
37+
// Squirrel bootstrapper, so give it a neutral name instead.
38+
setupExe: `MetaLens-${version}-win-x64.exe`,
3539
},
3640
},
3741
{ name: '@electron-forge/maker-zip', platforms: ['darwin'] },

0 commit comments

Comments
 (0)