3 # gets any updates for the repository folders present in the REPOSITORY_LIST variable.
5 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
6 source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
8 # trickery to ensure we can always update this file, even when the operating system has some
9 # rude behavior with regard to file locking (ahem, windows...).
10 # and even more rudeness is that the pwd and $TMP may not always be in the same form,
11 # which causes endless confusion and badness. that's why we get the pwd reading for TMP
12 # first so we can do an orange-to-orange compare.
13 tmpdir="$(cd $TMP; \pwd)"
14 if [ "$(\pwd)" != "$tmpdir" ]; then
15 if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then
16 echo "moving to the TMP directory to avoid file access conflicts..."
18 new_name="$TMP/zz_$(basename $0)"
19 \cp -f "$0" "$new_name"
21 echo "failed to copy this script up to the TMP directory. exploit attempted?"
31 export TMPO_CHK=$TMP/zz_chk.log
35 echo "getting repositories at: $(date)"
38 # perform the checkouts as appropriate per OS.
39 FULL_LIST="$(dirname $FEISTY_MEOW_APEX) $HOME"
40 #if [ "$OS" != "Windows_NT" ]; then
41 # checkout_list $HOME /usr/local 2>&1 | tee -a "$TMPO_CHK"
43 if [ "$OS" == "Windows_NT" ]; then
44 FULL_LIST+="c:/ d:/ e:/"
46 checkout_list $FULL_LIST 2>&1 | tee -a "$TMPO_CHK"
50 # regenerate the scripts after getting latest version of feisty meow.