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 6a01ae5 commit 74fc2c6
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 @@ -45,7 +45,7 @@ def build(file):
nuitka.__main__.main()
filename = os.path.splitext(file)[0]
for f in os.listdir(os.path.join(os.getcwd(), "build")):
if filename in f and not os.path.isdir(os.path.join(os.getcwd(), "build", f)):
if f.startswith(filename) and not os.path.isdir(os.path.join(os.getcwd(), "build", f)):
shutil.move(os.path.join(os.getcwd(), "build", f), os.path.join(os.getcwd(), "dist", f))


Expand Down

0 comments on commit 74fc2c6

Please sign in to comment.