From b678152ac6c4295a60d3807a202ea83e8166ded4 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Wed, 29 Nov 2023 20:50:14 +0600 Subject: [PATCH] Change pyinstaller command for windows --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 08c3cbe63..2633fe2a8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -149,7 +149,7 @@ for: # Build gamedata DB - cmd: "python db_update.py" # Build command for PyInstaller - - cmd: "python -m PyInstaller --noupx --clean --windowed --noconsole -y pyfa.spec" + - cmd: "python -m PyInstaller --clean -y pyfa.spec" # Copy over manifest (See pyfa-org/pyfa#1622) - ps: xcopy /y dist_assets\win\pyfa.exe.manifest $env:PYFA_DIST_DIR\pyfa\ # InnoScript EXE building. This is in a separate script because I don't feel like copying over the logic to AppVeyor script right now...