mirror of
https://github.com/Ahrimdon/detailed-cod-tracker.git
synced 2025-01-18 08:25:00 -05:00
maint(): fix naming error
This commit is contained in:
parent
7bbb86a565
commit
6893ccbdd4
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
cd /d %~dp0 :: Change directory to the location of this batch file
|
cd /d %~dp0 :: Change directory to the location of this batch file
|
||||||
call ../venv/Scripts/activate :: Activate the virtual environment
|
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
|
rmdir /s /q build
|
||||||
del /q "cod_api_tool.spec"
|
del /q "cod_api_tool.spec"
|
||||||
|
@ -4,7 +4,7 @@ import subprocess
|
|||||||
import PyInstaller.__main__
|
import PyInstaller.__main__
|
||||||
|
|
||||||
# Constants for your project
|
# Constants for your project
|
||||||
SCRIPT = "main.py"
|
SCRIPT = "cod_api_tool.py"
|
||||||
ICON = "assets/icon.ico"
|
ICON = "assets/icon.ico"
|
||||||
NAME = "cod_api_tool"
|
NAME = "cod_api_tool"
|
||||||
DIST_PATH = "bin"
|
DIST_PATH = "bin"
|
||||||
|
Loading…
Reference in New Issue
Block a user