Skip to content

Commit

Permalink
fix windows createPackage path
Browse files Browse the repository at this point in the history
  • Loading branch information
PalmerAL committed Mar 8, 2024
1 parent e78e260 commit d73bc7c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/createPackage.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ function toPath (platform, arch) {
switch (arch) {
case Arch.ia32:
return 'dist/app/win-ia32-unpacked'
default:
case Arch.arm64:
return 'dist/app/win-arm64-unpacked'
case Arch.x64:
return 'dist/app/win-unpacked'
default:
return null
}
} else if (platform == 'linux') {
switch (arch) {
Expand All @@ -30,6 +34,8 @@ function toPath (platform, arch) {
return 'dist/app/mac-arm64'
case Arch.x64:
return 'dist/app/mac'
default:
return null
}
}
}
Expand Down

0 comments on commit d73bc7c

Please sign in to comment.