Skip to content

Commit

Permalink
use ammo.js by default in test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken committed Dec 20, 2012
1 parent 0bafe48 commit eb6d03e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import os, sys, re, json
from subprocess import Popen, PIPE, STDOUT

# By default use builds/ammo.new.js. Or the commandline argument can override that.
build = os.path.join('builds', 'ammo.new.js')
# By default use builds/ammo.js. Or the commandline argument can override that.
build = os.path.join('builds', 'ammo.js')
if len(sys.argv) > 1:
build = sys.argv[1]
print 'Using build:', build
Expand Down

0 comments on commit eb6d03e

Please sign in to comment.