disable PyInstaller debug

This commit is contained in:
Jay Lee
2019-07-13 15:12:50 -04:00
parent a2a9ffc895
commit 474fcd33a6
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ if [ "$VMTYPE" == "test" ]; then
export gam="$python gam.py"
export gampath=$(readlink -e .)
else
$python -OO -m PyInstaller --clean --debug -F --distpath=gam $GAMOS-gam.spec
$python -OO -m PyInstaller --clean -F --distpath=gam $GAMOS-gam.spec
export gam="gam/gam"
export gampath=$(readlink -e gam)
export GAMVERSION=`$gam version simple`

View File

@@ -1,5 +1,5 @@
cd src
$python -OO -m PyInstaller --clean --debug -F --distpath=gam $GAMOS-gam.spec
$python -OO -m PyInstaller --clean -F --distpath=gam $GAMOS-gam.spec
export gam="gam/gam"
export gampath=gam
$gam version extended