From d4eeca371bd4fcc5500750639115ef7b0ed09e04 Mon Sep 17 00:00:00 2001 From: Ahrimdon Date: Sun, 3 Mar 2024 05:51:29 -0500 Subject: [PATCH] Fix error in build script & add .gitignore --- .gitignore | 2 ++ build.py | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..98e2516 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/venv +/build \ No newline at end of file diff --git a/build.py b/build.py index aa23f4b..964984e 100644 --- a/build.py +++ b/build.py @@ -16,10 +16,8 @@ PyInstaller.__main__.run([ '--name', NAME, "--noconfirm", "--onefile", - "--windowed", "--icon", ICON, '--distpath', BUILD_DIR, # Specify custom build output folder - '--clean' # Clean PyInstaller cache and remove temporary files before building ]) # Remove SPEC file