Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lilingfengdev committed Jun 28, 2024
1 parent 70c1e60 commit 3fed519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate-bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
for file in os.listdir(os.path.join(os.getcwd(), "src")):
filepath = os.path.join(os.getcwd(), "src", file)
print(f"build {file}", flush=True)
args = ["nuitka", "--lto=yes", "--onefile", filepath, "--output-dir=dist", "--mingw64"]
args = ["nuitka", "--lto=yes", "--onefile", filepath, "--output-dir=dist"]
if platform.system() == 'Windows':
args.append("--windows-icon-from-ico=favicon.png")
args.append("--enable-plugins=upx")
Expand Down

0 comments on commit 3fed519

Please sign in to comment.