This commit is contained in:
Kentai Radiquum 2025-05-05 03:19:56 +05:00
parent 3ef10c07cf
commit c74170a14d
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
6 changed files with 20 additions and 8 deletions

View file

@ -13,7 +13,10 @@ parser = argparse.ArgumentParser(
epilog="",
)
parser.add_argument(
"--no-rebuild", help="don't rebuild Next.js frontend", action="store_true", default=False
"--no-rebuild",
help="don't rebuild Next.js frontend",
action="store_true",
default=False,
)
parser.add_argument(
"--exe", help="create an executable file", action="store_true", default=False
@ -107,4 +110,4 @@ if __name__ == "__main__":
if os.path.exists(f"{OUT_DIR}/__pycache__") and os.path.isdir(
f"{OUT_DIR}/__pycache__"
):
shutil.rmtree(f"{OUT_DIR}/__pycache__")
shutil.rmtree(f"{OUT_DIR}/__pycache__")