From 8ef9a62dc9c990b86bf8d15d2d8f252e8535e6a8 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 8 Dec 2020 08:28:40 -0500 Subject: [PATCH] Update macos-install.sh --- .github/actions/macos-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/macos-install.sh b/.github/actions/macos-install.sh index 440af7f4..68f761b0 100755 --- a/.github/actions/macos-install.sh +++ b/.github/actions/macos-install.sh @@ -4,11 +4,12 @@ echo "Xcode versionn:" xcodebuild -version export gampath=dist/gam rm -rf $gampath -brew uninstall openssl@1.1 +brew uninstall --ignore-dependencies openssl@1.1 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 +brew install openssl@1.1 export gam="$gampath/gam" $gam version extended export GAMVERSION=`$gam version simple`