You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2020/05/27 20:17:56 UTC

[maven] branch MNG-6919 updated: [MNG-6919] fix unix based scripts and spaced paths

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

rfscholte pushed a commit to branch MNG-6919
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/MNG-6919 by this push:
     new 43d8ad6  [MNG-6919] fix unix based scripts and spaced paths
43d8ad6 is described below

commit 43d8ad6bbe1c36ea0ae0cb3077a203706e97935c
Author: rfscholte <rf...@apache.org>
AuthorDate: Wed May 27 22:17:45 2020 +0200

    [MNG-6919] fix unix based scripts and spaced paths
---
 apache-maven/src/assembly/shared/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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