Skip to content

Commit

Permalink
build(windows): do not rename files after build
Browse files Browse the repository at this point in the history
Signed-off-by: Grigorii K. Shartsev <[email protected]>
  • Loading branch information
ShGKme committed Nov 22, 2024
1 parent 5a13e8f commit 0e9c53d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ function fixArtifactName(artifactPath, platform, arch) {
const artifactName = path.basename(artifactPath)
const ext = path.extname(artifactName)

if (platform === 'win32' && ext !== '.exe') {
// For Windows names are configurable in Squirrel distribution
if (platform === 'win32') {
return artifactPath
}

Expand Down

0 comments on commit 0e9c53d

Please sign in to comment.