From 70a69745b27c0329a8d179e5fdcf5aca5e0209bd Mon Sep 17 00:00:00 2001 From: EricGoldsteinNz <32555045+EricGoldsteinNz@users.noreply.github.com> Date: Sat, 24 Jun 2023 20:35:01 +1200 Subject: [PATCH] Use correct pyinstaller --- build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bat b/build.bat index 4f2c3de..0593832 100644 --- a/build.bat +++ b/build.bat @@ -10,7 +10,7 @@ if not exist "venv\Lib\site-packages\PyInstaller" ( if not exist "venv\Lib\site-packages\PIL" ( venv\Scripts\python -m pip install Pillow ) -venv\Scripts\python -m PyInstaller --onefile -F tadpole.py --icon frog.ico --clean --noconsole +pyinstaller.exe --onefile -F tadpole.py --icon frog.ico --clean --noconsole copy README.md "dist\readme.md" copy LICENSE "dist\license.txt" copy tadpole.py "dist\tadpole.py"