Skip to content

Commit

Permalink
fix(server_manager): explicitly set build target architecture (Jigsaw…
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse authored Oct 4, 2023
1 parent 4716680 commit 7d5dffc
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/server_manager/electron_app/electron_builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,26 @@
"artifactName": "Outline-Manager.${ext}",
"linux": {
"icon": "icons/png",
"category": "Network"
"category": "Network",
"target": [{
"target": "AppImage",
"arch": ["x64"]
}]
},
"win": {
"icon": "icons/win/icon.ico",
"sign": "src/server_manager/electron_app/windows/electron_builder_signing_plugin.cjs",
"signingHashAlgorithms": ["sha256"]
"signingHashAlgorithms": ["sha256"],
"target": [{
"target": "nsis",
"arch": "ia32"
}]
},
"mac": {
"icon": "icons/mac/icon.icns"
"icon": "icons/mac/icon.icns",
"target": [{
"target": "dmg",
"arch": "universal"
}]
}
}

0 comments on commit 7d5dffc

Please sign in to comment.