From f010e5959746f2ca8153ccac838c407a6ce7e617 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 11 May 2021 10:15:10 -0400 Subject: [PATCH] remove -F on Windows --- .github/actions/windows-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/windows-install.sh b/.github/actions/windows-install.sh index 33d5095a..35cf7fb4 100755 --- a/.github/actions/windows-install.sh +++ b/.github/actions/windows-install.sh @@ -9,7 +9,7 @@ export gampath="${distpath}/gam" rm -rf $gampath #mkdir -p $gampath #export gampath=$(readlink -e $gampath) -pyinstaller --clean --noupx -F --distpath $distpath gam.spec +pyinstaller --clean --noupx --distpath $distpath gam.spec export gam="${gampath}/gam" echo "running compiled GAM..." $gam version