Skip to content

Commit

Permalink
Fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mak448a committed Mar 20, 2024
1 parent df0cd12 commit 6d516eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

os.system("pyinstaller main.spec")

choice = input("Delete build cache? (N/y) ").strip().lower()
# choice = input("Delete build cache? (N/y) ").strip().lower()

if choice == "yes" or choice == "y":
shutil.rmtree("build")
else:
quit()
# if choice == "yes" or choice == "y":
# shutil.rmtree("build")
# else:
# quit()

0 comments on commit 6d516eb

Please sign in to comment.