mirror of
https://github.com/Ahrimdon/detailed-cod-tracker.git
synced 2025-01-19 00:44:59 -05:00
10 lines
333 B
Batchfile
10 lines
333 B
Batchfile
|
@echo off
|
||
|
|
||
|
cd /d %~dp0 :: Change directory to the location of this batch file
|
||
|
call ../venv/Scripts/activate :: Activate the virtual environment
|
||
|
pyinstaller --noconfirm --onefile --console --icon "../assets/icon.ico" get_cod_stats.py --distpath="../build/bin" -n "get_cod_stats"
|
||
|
|
||
|
rmdir /s /q build
|
||
|
del /q "get_cod_stats.spec"
|
||
|
|
||
|
pause
|