From: Chris Koeritz Date: Wed, 7 Mar 2012 21:23:20 +0000 (-0500) Subject: fixing obnoxious cygwin / windows problems, which apparently is now my new job. X-Git-Tag: 2.140.90~1505 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=6945cfd7e932ab839c99534263cda6b97bd6ac9b;p=feisty_meow.git fixing obnoxious cygwin / windows problems, which apparently is now my new job. --- diff --git a/scripts/rev_control/getme.sh b/scripts/rev_control/getme.sh old mode 100644 new mode 100755 index c2bc0cfa..f493ddba --- a/scripts/rev_control/getme.sh +++ b/scripts/rev_control/getme.sh @@ -6,7 +6,11 @@ source "$FEISTY_MEOW_SCRIPTS/rev_control/rev_control.sh" # trickery to ensure we can always update this file, even when the operating system has some # rude behavior with regard to file locking (ahem, windows...). -if [ "$(pwd)" != "$TMP" ]; then +# and even more rudeness is that the pwd and $TMP may not always be in the same form, +# which causes endless confusion and badness. that's why we get the pwd reading for TMP +# first so we can do an orange-to-orange compare. +tmpdir="$(cd $TMP; \pwd)" +if [ "$(\pwd)" != "$tmpdir" ]; then if [ ! -z "$SHELL_DEBUG" ]; then echo "Moving to the TMP directory to avoid file access conflicts..." fi