Skip to content

Commit

Permalink
fix win spec
Browse files Browse the repository at this point in the history
  • Loading branch information
archibate committed Aug 8, 2021
1 parent 142b780 commit 2eb539c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
else:
raise AssertionError(sys.platform)

subprocess.check_call([sys.executable, '-m', 'PyInstaller', 'scripts/launcher_{}.spec'.format(os_name)])
subprocess.check_call([sys.executable, '-m', 'PyInstaller', 'scripts/launcher_{}.spec'.format(os_name)] + sys.argv[1:])
shutil.make_archive('dist/launcher', 'zip', 'dist/launcher')
2 changes: 1 addition & 1 deletion scripts/launcher_win.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
block_cipher = None

dlls=[
( '../zenqt/lib/*', '.' ),
( '../zenqt/lib/*.dll', 'zenqt/lib' ),
]
assets=[
( '../zenqt/assets/*', 'zenqt/assets' ),
Expand Down

0 comments on commit 2eb539c

Please sign in to comment.