9 lines
275 B
PowerShell
9 lines
275 B
PowerShell
pyinstaller --clean -y -n "wowxel" --add-data="assets;assets" --add-data="config.json;." main.py;
|
|
cd dist/wowxel/;
|
|
mv ./_internal/assets .;
|
|
mv ./_internal/config.json .;
|
|
cd ..;
|
|
rm ./wowxel.zip;
|
|
Compress-Archive -Path ./wowxel -DestinationPath ./wowxel.zip;
|
|
explorer .;
|
|
cd ..; |