Repository: maven Updated Branches: refs/heads/MNG-5823 [created] ed5c84aa3
[MNG-5823] mvnDebug doesn't work with M2_HOME with spaces - missing quotes Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/ed5c84aa Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/ed5c84aa Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/ed5c84aa Branch: refs/heads/MNG-5823 Commit: ed5c84aa3d02d697d4ff954d97a856f2740983df Parents: 065281c Author: Tobias Oberlies <[email protected]> Authored: Sat Dec 19 18:06:23 2015 +0100 Committer: Michael Osipov <[email protected]> Committed: Sun Jan 29 19:10:35 2017 +0100 ---------------------------------------------------------------------- apache-maven/src/bin/mvnDebug | 2 +- apache-maven/src/bin/mvnyjp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/ed5c84aa/apache-maven/src/bin/mvnDebug ---------------------------------------------------------------------- diff --git a/apache-maven/src/bin/mvnDebug b/apache-maven/src/bin/mvnDebug index 09f48d9..8d6e6a1 100755 --- a/apache-maven/src/bin/mvnDebug +++ b/apache-maven/src/bin/mvnDebug @@ -31,4 +31,4 @@ MAVEN_DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,addre echo Preparing to execute Maven in debug mode -env MAVEN_OPTS="$MAVEN_OPTS" MAVEN_DEBUG_OPTS="$MAVEN_DEBUG_OPTS" $(dirname $0)/mvn "$@" +env MAVEN_OPTS="$MAVEN_OPTS" MAVEN_DEBUG_OPTS="$MAVEN_DEBUG_OPTS" "$(dirname "$0")/mvn" "$@" http://git-wip-us.apache.org/repos/asf/maven/blob/ed5c84aa/apache-maven/src/bin/mvnyjp ---------------------------------------------------------------------- diff --git a/apache-maven/src/bin/mvnyjp b/apache-maven/src/bin/mvnyjp index e08f77e..b2dbe1d 100755 --- a/apache-maven/src/bin/mvnyjp +++ b/apache-maven/src/bin/mvnyjp @@ -32,4 +32,4 @@ if [ ! -f "$YJPLIB" ]; then exit 1 fi -env MAVEN_OPTS="-agentpath:$YJPLIB=onexit=snapshot,onexit=memory,tracing,onlylocal $MAVEN_OPTS" $(dirname $0)/mvn "$@" +env MAVEN_OPTS="-agentpath:$YJPLIB=onexit=snapshot,onexit=memory,tracing,onlylocal $MAVEN_OPTS" "$(dirname "$0")/mvn" "$@"
