Skip to content

Commit

Permalink
Correctly output platform. Was outputting universal2, which should be…
Browse files Browse the repository at this point in the history
… specific.
  • Loading branch information
scosman committed Aug 10, 2024
1 parent a708371 commit ac1d9ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/build_desktop_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [ "$(uname)" == "Darwin" ]; then
# onedir launches faster, and still looks like 1 file with MacOS .app bundles
PLATFORM_OPTS="--onedir --osx-bundle-identifier=net.scosman.fune"

PY_PLAT=$(python -c 'import sysconfig; print(sysconfig.get_platform().split("-")[-1])')
PY_PLAT=$(python -c 'import platform; print(platform.machine())')
echo "Building MacOS app for single platform ($PY_PLAT)"
else
echo "Building Windows App"
Expand Down

0 comments on commit ac1d9ff

Please sign in to comment.