maint(): fix naming error

This commit is contained in:
Rim 2025-01-04 12:39:02 -05:00
parent 7bbb86a565
commit 6893ccbdd4
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
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" main.py --distpath="../build/bin" -n "cod_api_tool"
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"

View File

@ -4,7 +4,7 @@ import subprocess
import PyInstaller.__main__
# Constants for your project
SCRIPT = "main.py"
SCRIPT = "cod_api_tool.py"
ICON = "assets/icon.ico"
NAME = "cod_api_tool"
DIST_PATH = "bin"