3 # gets any updates for the repository folders present in the REPOSITORY_LIST variable.
5 source "$FEISTY_MEOW_SCRIPTS/core/functions.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 "$SHELL_DEBUG" ]; 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)"
37 # perform the checkouts as appropriate per OS.
38 if [ "$OS" != "Windows_NT" ]; then
39 checkout_list $HOME /usr/local 2>&1 | tee -a "$TMPO_CHK"
41 checkout_list $HOME c:/ d:/ e:/ 2>&1 | tee -a "$TMPO_CHK"
46 # regenerate the scripts after getting latest version of feisty meow.