You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2005/10/24 21:12:49 UTC

svn commit: r328137 - /maven/components/trunk/maven-core/src/bin/m2

Author: brett
Date: Mon Oct 24 12:12:46 2005
New Revision: 328137

URL: http://svn.apache.org/viewcvs?rev=328137&view=rev
Log:
PR: MNG-1244
Submitted by: Mark Hobson
Final fix for paths with spaces in the executable

Modified:
    maven/components/trunk/maven-core/src/bin/m2

Modified: maven/components/trunk/maven-core/src/bin/m2
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core/src/bin/m2?rev=328137&r1=328136&r2=328137&view=diff
==============================================================================
--- maven/components/trunk/maven-core/src/bin/m2 (original)
+++ maven/components/trunk/maven-core/src/bin/m2 Mon Oct 24 12:12:46 2005
@@ -22,4 +22,4 @@
 echo THE m2 COMMMAND IS DEPRECATED - PLEASE RUN mvn INSTEAD
 echo ""
 
-exec "`dirname $0`/mvn" $@
+exec "`dirname "$0"`/mvn" $@