Skip to content

Commit 2eb539c

Browse files
author
archibate
committed
fix win spec
1 parent 142b780 commit 2eb539c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
else:
1414
raise AssertionError(sys.platform)
1515

16-
subprocess.check_call([sys.executable, '-m', 'PyInstaller', 'scripts/launcher_{}.spec'.format(os_name)])
16+
subprocess.check_call([sys.executable, '-m', 'PyInstaller', 'scripts/launcher_{}.spec'.format(os_name)] + sys.argv[1:])
1717
shutil.make_archive('dist/launcher', 'zip', 'dist/launcher')

scripts/launcher_win.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
block_cipher = None
55

66
dlls=[
7-
( '../zenqt/lib/*', '.' ),
7+
( '../zenqt/lib/*.dll', 'zenqt/lib' ),
88
]
99
assets=[
1010
( '../zenqt/assets/*', 'zenqt/assets' ),

0 commit comments

Comments
 (0)