11 lines
331 B
Batchfile
Raw Permalink Normal View History

@echo off
cd /d %~dp0 :: Change directory to the location of this batch file
call ../venv/Scripts/activate :: Activate the virtual environment
2025-01-04 12:39:02 -05:00
pyinstaller --noconfirm --onefile --console --icon "../assets/icon.ico" cod_api_tool.py --distpath="../build/bin" -n "cod_api_tool"
rmdir /s /q build
del /q "cod_api_tool.spec"
2025-01-04 12:04:28 -05:00
pause