Skip to content

Commit

Permalink
fix(electron): issue updating Mac App
Browse files Browse the repository at this point in the history
Fixes athensresearch#749, athensresearch#793 due to default ordering resulting in electron-update choosing ARM64 binary on Intel Macs
  • Loading branch information
sboesen committed Mar 10, 2021
1 parent 60390da commit 644f0d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
{
"target": "dmg",
"arch": [
"arm64",
"x64"
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"arm64",
"x64"
"x64",
"arm64"
]
}
],
Expand Down

0 comments on commit 644f0d0

Please sign in to comment.