You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2012/08/06 23:33:33 UTC

svn commit: r1370029 - /lucene/dev/nightly/common-maven.sh

Author: sarowe
Date: Mon Aug  6 21:33:32 2012
New Revision: 1370029

URL: http://svn.apache.org/viewvc?rev=1370029&view=rev
Log:
SOLR-1725: fix copy/paste-o (extra export in mvn cmdline)

Modified:
    lucene/dev/nightly/common-maven.sh

Modified: lucene/dev/nightly/common-maven.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/common-maven.sh?rev=1370029&r1=1370028&r2=1370029&view=diff
==============================================================================
--- lucene/dev/nightly/common-maven.sh (original)
+++ lucene/dev/nightly/common-maven.sh Mon Aug  6 21:33:32 2012
@@ -25,7 +25,7 @@ echo ">>> Running tests under Maven"
 RHINO_LIBS_DIR=$HOME/tools/java/openjdk-missing-libs
 RHINO_LIBS=$RHINO_LIBS_DIR/script-js.jar:$RHINO_LIBS_DIR/js.jar
 
-$M2_HOME/bin/mvn --batch-mode --fail-at-end export -DargLine="-Xbootclasspath/a:$RHINO_LIBS" test
+$M2_HOME/bin/mvn --batch-mode --fail-at-end -DargLine="-Xbootclasspath/a:$RHINO_LIBS" test
 echo ">>> Done running tests under Maven"
 
 cd ..