Fix typo in mvn command for running with multiple JVMs

This commit is contained in:
Simon Willnauer 2013-11-04 14:30:17 +01:00
parent 35f33c4bbc
commit 1f3c7be851
1 changed files with 2 additions and 2 deletions

View File

@ -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))