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 03:10:01 UTC

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

Author: brett
Date: Sun Oct 23 18:10:00 2005
New Revision: 327899

URL: http://svn.apache.org/viewcvs?rev=327899&view=rev
Log:
PR: MNG-1244
Submitted by: Mark Hobson
make m2 wrapper script work under cygwin when there are spaces in the path

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=327899&r1=327898&r2=327899&view=diff
==============================================================================
--- maven/components/trunk/maven-core/src/bin/m2 (original)
+++ maven/components/trunk/maven-core/src/bin/m2 Sun Oct 23 18:10:00 2005
@@ -22,4 +22,4 @@
 echo THE m2 COMMMAND IS DEPRECATED - PLEASE RUN mvn INSTEAD
 echo ""
 
-exec `dirname $0`/mvn $@
+exec "`dirname $0`/mvn" $@