From 01fec79d788bfaf6b956eb0271e1bb42598c9252 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 11 May 2021 14:39:25 -0400 Subject: [PATCH] --universal2 --- .github/actions/macos-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/macos-install.sh b/.github/actions/macos-install.sh index 0ba22fc2..0e60082f 100755 --- a/.github/actions/macos-install.sh +++ b/.github/actions/macos-install.sh @@ -1,12 +1,12 @@ echo "MacOS Version Info According to Python:" python -c "import platform; print(platform.mac_ver())" -echo "Xcode versionn:" +echo "Xcode version:" xcodebuild -version -export distpath="dist/" +export distpath="dist" export gampath="${distpath}/gam" rm -rf $gampath export specfile="gam.spec" -$python -OO -m PyInstaller --clean --noupx --strip --distpath "${distpath}" "${specfile}" +$python -OO -m PyInstaller --clean --noupx --strip --distpath "${distpath}" --universal2 "${specfile}" export gam="${gampath}/gam" $gam version extended export GAMVERSION=`$gam version simple`