From c6b1ddda98d13e1202ab0b71876693848bc28a27 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Mon, 20 Feb 2012 21:04:33 -0500 Subject: [PATCH] switched down to neutral representation for dos paths in unixes, since cygwin and msys cannot agree. --- scripts/core/launch_feisty_meow.sh | 2 +- scripts/core/variables.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/core/launch_feisty_meow.sh b/scripts/core/launch_feisty_meow.sh index 9b1a4e5b..ad9a12c0 100644 --- a/scripts/core/launch_feisty_meow.sh +++ b/scripts/core/launch_feisty_meow.sh @@ -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 diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index a4aa5010..5c782d7f 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -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') -- 2.34.1