Skip to content

Commit

Permalink
Fix typo in mvn command for running with multiple JVMs
Browse files Browse the repository at this point in the history
  • Loading branch information
s1monw committed Nov 4, 2013
1 parent a645f7e commit ead2251
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-tools/build_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ def build_release(run_tests=False, dry_run=True, cpus=1):
target = 'package'
if run_tests:
run_mvn('clean',
'test -Dtests.cpu=%s -Des.node.mode=local' % (cpus),
'test -Dtests.cpu=%s -Des.node.mode=network' % (cpus))
'test -Dtests.jvms=%s -Des.node.mode=local' % (cpus),
'test -Dtests.jvms=%s -Des.node.mode=network' % (cpus))
run_mvn('clean %s -DskipTests' %(target))


Expand Down

0 comments on commit ead2251

Please sign in to comment.