Skip to content

Commit

Permalink
feat: set mac electron builder to [dmg], electronBuilder.Arch.x64
Browse files Browse the repository at this point in the history
  • Loading branch information
HSunboy committed May 14, 2024
1 parent 79f5d66 commit 0caef14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/client/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ async function buildClient(target) {
mac: [
{
ENV: '',
ARCH: '',
targets: electronBuilder.Platform.MAC.createTarget(),
ARCH: 'x64',
targets: electronBuilder.Platform.MAC.createTarget(['dmg'], electronBuilder.Arch.x64),
},
],
'mac-jre': [
{
ENV: 'jre',
ARCH: '',
targets: electronBuilder.Platform.MAC.createTarget(),
targets: electronBuilder.Platform.MAC.createTarget(['dmg'], electronBuilder.Arch.x64),
},
],
'linux_x86': [
Expand Down

0 comments on commit 0caef14

Please sign in to comment.