From 6945cfd7e932ab839c99534263cda6b97bd6ac9b Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 7 Mar 2012 16:23:20 -0500 Subject: [PATCH] fixing obnoxious cygwin / windows problems, which apparently is now my new job. --- scripts/rev_control/getme.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) mode change 100644 => 100755 scripts/rev_control/getme.sh 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 -- 2.34.1