From c23e53585afd54a4e0206ad17d1be3885f2a18af Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 7 May 2021 10:59:05 -0400 Subject: [PATCH] fix gam binary paths --- .github/actions/linux-install.sh | 2 +- .github/actions/macos-install.sh | 2 +- .github/actions/windows-install.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/linux-install.sh b/.github/actions/linux-install.sh index fdfff8fc..72d84f79 100755 --- a/.github/actions/linux-install.sh +++ b/.github/actions/linux-install.sh @@ -3,7 +3,7 @@ rm -rf $gampath mkdir -p $gampath export gampath=$(readlink -e $gampath) $python -OO -m PyInstaller --clean --noupx --strip -F --distpath $gampath gam.spec -export gam="${gampath}/gam" +export gam="${gampath}/gam/gam" export GAMVERSION=`$gam version simple` cp LICENSE $gampath cp GamCommands.txt $gampath diff --git a/.github/actions/macos-install.sh b/.github/actions/macos-install.sh index 0ae9c376..5eadffd0 100755 --- a/.github/actions/macos-install.sh +++ b/.github/actions/macos-install.sh @@ -6,7 +6,7 @@ export gampath=dist rm -rf $gampath export specfile="gam.spec" $python -OO -m PyInstaller --clean --noupx --strip -F --distpath "${gampath}" "${specfile}" -export gam="${gampath}/gam" +export gam="${gampath}/gam/gam" $gam version extended export GAMVERSION=`$gam version simple` cp LICENSE "${gampath}" diff --git a/.github/actions/windows-install.sh b/.github/actions/windows-install.sh index 6404738e..49c4c1f6 100755 --- a/.github/actions/windows-install.sh +++ b/.github/actions/windows-install.sh @@ -9,7 +9,7 @@ rm -rf $gampath mkdir -p $gampath export gampath=$(readlink -e $gampath) pyinstaller --clean --noupx -F --distpath $gampath gam.spec -export gam="${gampath}/gam" +export gam="${gampath}/gam/gam" echo "running compiled GAM..." $gam version export GAMVERSION=$($gam version simple)