2023-10-08 07:23:27 -04:00
|
|
|
@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\build\icon\icon.ico" get_cod_stats.py --distpath="bin" -n "get_cod_stats"
|
|
|
|
|
|
|
|
rmdir /s /q build
|
|
|
|
del /q "get_cod_stats.spec"
|
|
|
|
|
2023-12-25 03:57:17 -05:00
|
|
|
pause
|