From be41f0ba11ed59d393ce4e4253f6204af1bd2999 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 2 Feb 2022 10:39:02 -0500 Subject: [PATCH] [no ci] remove old file --- .github/actions/macos-install.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 .github/actions/macos-install.sh diff --git a/.github/actions/macos-install.sh b/.github/actions/macos-install.sh deleted file mode 100755 index 167d1c82..00000000 --- a/.github/actions/macos-install.sh +++ /dev/null @@ -1,19 +0,0 @@ -echo "MacOS Version Info According to Python:" -macver=$(python -c "import platform; print(platform.mac_ver()[0])") -echo "$macver" -echo "Xcode version:" -xcodebuild -version -export distpath="dist/" -export gampath="${distpath}gam" -rm -rf $gampath -export specfile="gam.spec" -$python -OO -m PyInstaller --distpath "${gampath}" "${specfile}" -export gam="${gampath}/gam" -$gam version extended -export GAMVERSION=$($gam version simple) -cp LICENSE "${gampath}" -cp GamCommands.txt "${gampath}" -GAM_ARCHIVE="gam-${GAMVERSION}-${GAMOS}-${PLATFORM}.tar.xz" -rm "${gampath}/lastupdatecheck.txt" -# tar will cd to dist/ and tar up gam/ -tar -C dist/ --create --file "$GAM_ARCHIVE" --xz gam