You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2020/06/02 03:46:50 UTC

[maven] branch master updated: fix mvnDebug which was not working anymore for unix

This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new cde15f4  fix mvnDebug which was not working anymore for unix
cde15f4 is described below

commit cde15f4ef2b513749b7d0a9c0c5fc4260422211c
Author: olivier lamy <ol...@apache.org>
AuthorDate: Tue Jun 2 13:46:01 2020 +1000

    fix mvnDebug which was not working anymore for unix
    
    Signed-off-by: olivier lamy <ol...@apache.org>
---
 apache-maven/src/assembly/shared/run | 1 +
 1 file changed, 1 insertion(+)

diff --git a/apache-maven/src/assembly/shared/run b/apache-maven/src/assembly/shared/run
index 7aa3f55..5d1b66c 100755
--- a/apache-maven/src/assembly/shared/run
+++ b/apache-maven/src/assembly/shared/run
@@ -17,6 +17,7 @@ export MAVEN_CMD_LINE_ARGS
 
 exec "$JAVACMD" \
   $MAVEN_OPTS \
+  $MAVEN_DEBUG_OPTS \
   -classpath "${LAUNCHER_JAR}" \
   $MAVENHOME_CONFIG "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
   $MAVEN_LAUNCHER "$@"