mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 12:21:35 +00:00
fix gam binary paths
This commit is contained in:
2
.github/actions/linux-install.sh
vendored
2
.github/actions/linux-install.sh
vendored
@@ -3,7 +3,7 @@ rm -rf $gampath
|
|||||||
mkdir -p $gampath
|
mkdir -p $gampath
|
||||||
export gampath=$(readlink -e $gampath)
|
export gampath=$(readlink -e $gampath)
|
||||||
$python -OO -m PyInstaller --clean --noupx --strip -F --distpath $gampath gam.spec
|
$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`
|
export GAMVERSION=`$gam version simple`
|
||||||
cp LICENSE $gampath
|
cp LICENSE $gampath
|
||||||
cp GamCommands.txt $gampath
|
cp GamCommands.txt $gampath
|
||||||
|
|||||||
2
.github/actions/macos-install.sh
vendored
2
.github/actions/macos-install.sh
vendored
@@ -6,7 +6,7 @@ export gampath=dist
|
|||||||
rm -rf $gampath
|
rm -rf $gampath
|
||||||
export specfile="gam.spec"
|
export specfile="gam.spec"
|
||||||
$python -OO -m PyInstaller --clean --noupx --strip -F --distpath "${gampath}" "${specfile}"
|
$python -OO -m PyInstaller --clean --noupx --strip -F --distpath "${gampath}" "${specfile}"
|
||||||
export gam="${gampath}/gam"
|
export gam="${gampath}/gam/gam"
|
||||||
$gam version extended
|
$gam version extended
|
||||||
export GAMVERSION=`$gam version simple`
|
export GAMVERSION=`$gam version simple`
|
||||||
cp LICENSE "${gampath}"
|
cp LICENSE "${gampath}"
|
||||||
|
|||||||
2
.github/actions/windows-install.sh
vendored
2
.github/actions/windows-install.sh
vendored
@@ -9,7 +9,7 @@ rm -rf $gampath
|
|||||||
mkdir -p $gampath
|
mkdir -p $gampath
|
||||||
export gampath=$(readlink -e $gampath)
|
export gampath=$(readlink -e $gampath)
|
||||||
pyinstaller --clean --noupx -F --distpath $gampath gam.spec
|
pyinstaller --clean --noupx -F --distpath $gampath gam.spec
|
||||||
export gam="${gampath}/gam"
|
export gam="${gampath}/gam/gam"
|
||||||
echo "running compiled GAM..."
|
echo "running compiled GAM..."
|
||||||
$gam version
|
$gam version
|
||||||
export GAMVERSION=$($gam version simple)
|
export GAMVERSION=$($gam version simple)
|
||||||
|
|||||||
Reference in New Issue
Block a user