diff --git a/.github/actions/linux-install.sh b/.github/actions/linux-install.sh index 47253948..38bdd361 100755 --- a/.github/actions/linux-install.sh +++ b/.github/actions/linux-install.sh @@ -4,7 +4,7 @@ rm -rf $gampath #mkdir -p $gampath #export gampath=$(readlink -e $gampath) $pip install wheel -$python -OO -m PyInstaller --clean --noupx --strip -F --distpath $distpath gam.spec +$python -OO -m PyInstaller --clean --noupx --strip --distpath $distpath gam.spec export gam="${gampath}/gam" export GAMVERSION=`$gam version simple` cp LICENSE $gampath diff --git a/.github/actions/macos-install.sh b/.github/actions/macos-install.sh index b67af5de..0ba22fc2 100755 --- a/.github/actions/macos-install.sh +++ b/.github/actions/macos-install.sh @@ -6,7 +6,7 @@ export distpath="dist/" export gampath="${distpath}/gam" rm -rf $gampath export specfile="gam.spec" -$python -OO -m PyInstaller --clean --noupx --strip -F --distpath "${distpath}" "${specfile}" +$python -OO -m PyInstaller --clean --noupx --strip --distpath "${distpath}" "${specfile}" export gam="${gampath}/gam" $gam version extended export GAMVERSION=`$gam version simple`