Skip to content

Commit

Permalink
Fix starting script in build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bugdone committed Aug 3, 2015
1 parent 9fb66cd commit 60f2469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
shutil.copytree(demoinfogo, path)
shutil.copy('target/' + jar, path)
with open(path + '/headshotbox.' + ('bat' if os_name == 'win' else 'sh'), 'w') as f:
f.write('java -jar %s 4000' % jar)
f.write('java -jar %s --port 4000' % jar)
if os_name == 'linux':
os.system('chmod +x %s/headshotbox.sh' % path)

Expand Down

0 comments on commit 60f2469

Please sign in to comment.