You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2011/02/27 21:52:17 UTC

svn commit: r1075154 - /incubator/easyant/core/trunk/bin/easyant

Author: jlboudart
Date: Sun Feb 27 21:52:17 2011
New Revision: 1075154

URL: http://svn.apache.org/viewvc?rev=1075154&view=rev
Log:
Fixing wrong path containing slashes in easyant shell script

Modified:
    incubator/easyant/core/trunk/bin/easyant

Modified: incubator/easyant/core/trunk/bin/easyant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/bin/easyant?rev=1075154&r1=1075153&r2=1075154&view=diff
==============================================================================
--- incubator/easyant/core/trunk/bin/easyant (original)
+++ incubator/easyant/core/trunk/bin/easyant Sun Feb 27 21:52:17 2011
@@ -364,28 +364,28 @@ fi
 # add a second backslash to variables terminated by a backslash under cygwin
 if $cygwin; then
   case "$ANT_HOME" in
-    *\ )
-    ANT_HOME="$ANT_HOME\"
+    *\\ )
+    ANT_HOME="$ANT_HOME\\"
     ;;
   esac
   case "$CYGHOME" in
-    *\ )
-    CYGHOME="$CYGHOME\"
+    *\\ )
+    CYGHOME="$CYGHOME\\"
     ;;
   esac
   case "$JIKESPATH" in
-    *\ )
-    JIKESPATH="$JIKESPATH\"
+    *\\ )
+    JIKESPATH="$JIKESPATH\\"
     ;;
   esac
   case "$LOCALCLASSPATH" in
-    *\ )
-    LOCALCLASSPATH="$LOCALCLASSPATH\"
+    *\\ )
+    LOCALCLASSPATH="$LOCALCLASSPATH\\"
     ;;
   esac
   case "$CLASSPATH" in
-    *\ )
-    CLASSPATH="$CLASSPATH\"
+    *\\ )
+    CLASSPATH="$CLASSPATH\\"
     ;;
   esac
 fi