From 251e2774aac8b391bcb78b27593f947e63043d83 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 10 May 2021 08:59:30 -0400 Subject: [PATCH] no mkdir --- .github/actions/linux-install.sh | 2 +- .github/actions/windows-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/linux-install.sh b/.github/actions/linux-install.sh index cdf84764..822cb3bc 100755 --- a/.github/actions/linux-install.sh +++ b/.github/actions/linux-install.sh @@ -1,7 +1,7 @@ export distpath="dist/" export gampath="${distpath}/gam" rm -rf $gampath -mkdir -p $gampath +#mkdir -p $gampath export gampath=$(readlink -e $gampath) $python -OO -m PyInstaller --clean --noupx --strip -F --distpath $distpath gam.spec export gam="${gampath}/gam" diff --git a/.github/actions/windows-install.sh b/.github/actions/windows-install.sh index 1477748b..68169946 100755 --- a/.github/actions/windows-install.sh +++ b/.github/actions/windows-install.sh @@ -7,7 +7,7 @@ echo "compiling GAM with pyinstaller..." export distpath="dist/" export gampath="${distpath}/gam" rm -rf $gampath -mkdir -p $gampath +#mkdir -p $gampath export gampath=$(readlink -e $gampath) pyinstaller --clean --noupx -F --distpath $distpath gam.spec export gam="${gampath}/gam"