Author: brett
Date: Mon May 9 04:38:38 2005
New Revision: 169293
URL: http://svn.apache.org/viewcvs?rev=169293&view=rev
Log:
PR: MNG-372
more fixes for paths with spaces
Modified:
maven/components/trunk/m2-bootstrap-all.sh
maven/components/trunk/maven-core-it/maven-core-it.sh
Modified: maven/components/trunk/m2-bootstrap-all.sh
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/m2-bootstrap-all.sh?rev=169293&r1=169292&r2=169293&view=diff
==============================================================================
--- maven/components/trunk/m2-bootstrap-all.sh (original)
+++ maven/components/trunk/m2-bootstrap-all.sh Mon May 9 04:38:38 2005
@@ -6,6 +6,7 @@
JAVACMD=$JAVA_HOME/bin/java
ARGS="$@"
+ORIG_ARGS="$ARGS"
# OS specific support. $var _must_ be set to either true or false.
cygwin=false;
@@ -64,7 +65,7 @@
echo
echo "Running maven-core integration tests ..."
echo
- ./maven-core-it.sh $ARGS
+ ./maven-core-it.sh "$ORIG_ARGS"
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
)
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
Modified: maven/components/trunk/maven-core-it/maven-core-it.sh
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/maven-core-it.sh?rev=169293&r1=169292&r2=169293&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/maven-core-it.sh (original)
+++ maven/components/trunk/maven-core-it/maven-core-it.sh Mon May 9 04:38:38
2005
@@ -9,7 +9,7 @@
jvm_args="$@"
if [ ! -z "$MAVEN_OPTS" ]; then
- jvm_args="$jvm_args $MAVEN_OPTS"
+ jvm_args="$MAVEN_OPTS $jvm_args"
fi
# OS specific support. $var _must_ be set to either true or false.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]