Skip to content

Commit 74f1742

Browse files
committed
Fix issue #8
1 parent a736bdc commit 74f1742

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def make_command(platform, python, pyarmor, output):
163163
else:
164164
filename = os.path.join(output, 'pyarmor')
165165
with open(filename, 'w') as f:
166-
f.write('%s %s $*' % (python, script))
166+
f.write('%s %s "$@"' % (python, script))
167167
os.chmod(filename, 0o755)
168168
return filename
169169

0 commit comments

Comments
 (0)