Fix error in build script & add .gitignore

This commit is contained in:
Ahrimdon 2024-03-03 05:51:29 -05:00
parent a10d742a43
commit d4eeca371b
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/venv
/build

View File

@ -16,10 +16,8 @@ PyInstaller.__main__.run([
'--name', NAME, '--name', NAME,
"--noconfirm", "--noconfirm",
"--onefile", "--onefile",
"--windowed",
"--icon", ICON, "--icon", ICON,
'--distpath', BUILD_DIR, # Specify custom build output folder '--distpath', BUILD_DIR, # Specify custom build output folder
'--clean' # Clean PyInstaller cache and remove temporary files before building
]) ])
# Remove SPEC file # Remove SPEC file