PR: MNG-372

more fixes for paths with spaces

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@169293 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-05-09 11:38:38 +00:00
parent 31b340375b
commit 26622164f4
2 changed files with 3 additions and 2 deletions

View File

@ -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 @@ ret=$?; if [ $ret != 0 ]; then exit $ret; fi
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

View File

@ -9,7 +9,7 @@ verifier=org.apache.maven.it.Verifier
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.