From: Chris Koeritz Date: Tue, 21 Feb 2012 02:04:33 +0000 (-0500) Subject: switched down to neutral representation for dos paths in unixes, since X-Git-Tag: 2.140.90~1588^2 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=c6b1ddda98d13e1202ab0b71876693848bc28a27;p=feisty_meow.git switched down to neutral representation for dos paths in unixes, since cygwin and msys cannot agree. --- 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')