fix pyinstaller bat

This commit is contained in:
itay 2019-04-07 11:48:01 +03:00
parent f48a3e1293
commit 67b17436e1
1 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,8 @@
pyinstaller -F --log-level=DEBUG --clean --upx-dir=.\bin monkey_island.spec
move dist\monkey_island.exe monkey_island.exe
move /Y dist\monkey_island.exe monkey_island.exe
IF EXIST build (
rmdir /S /Q build
)
IF EXIST dist (
rmdir /S /Q dist
)