switched down to neutral representation for dos paths in unixes, since
authorChris Koeritz <fred@gruntose.com>
Tue, 21 Feb 2012 02:04:33 +0000 (21:04 -0500)
committerChris Koeritz <fred@gruntose.com>
Tue, 21 Feb 2012 02:04:33 +0000 (21:04 -0500)
cygwin and msys cannot agree.

scripts/core/launch_feisty_meow.sh
scripts/core/variables.sh

index 9b1a4e5b34613ba4bdca8e90f895a44b63c80504..ad9a12c019bca3c8c9c86e23758cf7ea06062d11 100644 (file)
@@ -51,7 +51,7 @@ if [ "$OS" == "Windows_NT" ]; then
   if [ -z "$HOME" ]; then
     # set a default that might not be appropriate for everyone, but should
     # still work.
-    export HOME=/c/home
+    export HOME=c:/home
   fi
   if [ ! -d "$HOME" ]; then mkdir $HOME; fi
 fi
index a4aa5010d56a4106e53274d94f16c4b7d72078ec..5c782d7fe2e84b70cd7e69adc53711b56c0a6de3 100644 (file)
@@ -29,7 +29,7 @@ export IS_DARWIN=$(echo $OSTYPE | grep -i darwin)
 if [ "$OS" == "Windows_NT" ]; then
   # give them a default place if they don't have one already.
   if [ -z "$HOME" ]; then
-    export HOME=/c/home
+    export HOME=c:/home
   fi
   # patch home to undo cygwin style of drive letter.
 #  export HOME=$(echo $HOME | sed -e 's/\/cygdrive\//\//g')