From 7d4fb091fb275f73215502faa2f5a008c669cc46 Mon Sep 17 00:00:00 2001
From: Chris Stone <chrisjstone79@gmail.com>
Date: Fri, 5 Jul 2013 21:47:38 -0600
Subject: [PATCH] Fixed path name issue for cygwin.

Updated cygpath command in drush script to output unix style
names instead of windows style names.
---
 drush |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drush b/drush
index de83db6..e1c71d0 100755
--- a/drush
+++ b/drush
@@ -36,7 +36,7 @@ done
 # Build the path to drush.php.
 SCRIPT_PATH="`dirname "$SELF_PATH"`/drush.php"
 if [ -n "$CYGWIN" ] ; then
-  SCRIPT_PATH="`cygpath -w -a -- "$SCRIPT_PATH"`"
+  SCRIPT_PATH="`cygpath -u -a -- "$SCRIPT_PATH"`"
 fi
 
 # If not exported, try to determine and export the number of columns.
-- 
1.7.9

