From af7bbe3cca407444ea2463086ef74ea310f7919a Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 8 Dec 2020 07:52:25 -0500 Subject: [PATCH] Update macos-install.sh --- .github/actions/macos-install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/macos-install.sh b/.github/actions/macos-install.sh index e414eed6..778a5ecc 100755 --- a/.github/actions/macos-install.sh +++ b/.github/actions/macos-install.sh @@ -4,9 +4,11 @@ echo "Xcode versionn:" xcodebuild -version export gampath=dist/gam rm -rf $gampath +export DYLD_PRINT_LIBRARIES=YES +$python ./gam.py version extended +unset DYLD_PRINT_LIBRARIES $python -OO -m PyInstaller --clean --noupx --strip -F --distpath $gampath gam.spec export gam="$gampath/gam" -export DYLD_PRINT_LIBRARIES=YES $gam version extended export GAMVERSION=`$gam version simple` cp LICENSE $gampath