Skip to content

Commit

Permalink
- Removed done TODO
Browse files Browse the repository at this point in the history
- Removed --onefile parameter from make.bat
  • Loading branch information
DJSchaffner committed Sep 30, 2020
1 parent 08048b6 commit d14c6c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion make.bat
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
1 change: 0 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit d14c6c7

Please sign in to comment.