Skip to content

Commit 8b33ecb

Browse files
Kim2091claude
andcommitted
Fix renamePortable script to match electron-builder output name
The script looked for Vapourkit-${version}-win.7z but electron-builder produces Vapourkit-${version}-vapourkit-gui.7z, so the rename was silently skipped on every build since the script was introduced. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent e7eb26d commit 8b33ecb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/renamePortable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { join } from 'path';
88
import { version } from '../package.json';
99

1010
const releaseDir = join(__dirname, '..', 'release');
11-
const oldName = `Vapourkit-${version}-win.7z`;
11+
const oldName = `Vapourkit-${version}-vapourkit-gui.7z`;
1212
const newName = `Vapourkit-${version}-PORTABLE.7z`;
1313

1414
const oldPath = join(releaseDir, oldName);

0 commit comments

Comments
 (0)