diff --git a/make.bat b/make.bat index 5cc2cc9..98f1392 100644 --- a/make.bat +++ b/make.bat @@ -1,5 +1,5 @@ @echo off -pyinstaller --onefile --name "aoe2de_patcher" src/main.py --add-data "res;res" --noconsole >nul 2>&1 +pyinstaller --name "aoe2de_patcher" src/main.py --add-data "res;res" --noconsole >nul 2>&1 @RD /S /Q "src/__pycache__" @RD /S /Q "build" >nul 2>&1 if exist "build" rd /s /q "build" diff --git a/src/main.py b/src/main.py index c787ffe..e22aca7 100644 --- a/src/main.py +++ b/src/main.py @@ -141,6 +141,5 @@ def _enable_input(self): self.ent_password.config(state="enabled") if __name__ == '__main__': - # @TODO Generate file list to minimize download size app = App() app.start() \ No newline at end of file