added /usr/local as potential place to find repositories.
authorChris Koeritz <fred@gruntose.com>
Sat, 28 Nov 2015 02:57:29 +0000 (21:57 -0500)
committerChris Koeritz <fred@gruntose.com>
Sat, 28 Nov 2015 02:57:29 +0000 (21:57 -0500)
customizing/fred/fred_variables.sh
scripts/rev_control/checkin.sh
scripts/rev_control/getem.sh

index c94a1d3f01f3ace721ce343a223d54703848ec1f..be4ab37ea1a9be3ec03350ca2ec7b8f9f0e28ae5 100644 (file)
@@ -17,7 +17,7 @@ if [ -z "$NETHACKOPTIONS" ]; then
   # add a bunch of folders to the list for checkin & checkout.  these are
   # definitely personal, and some of them are fairly dated (the yeti and
   # hoople folders, for example).
-  REPOSITORY_LIST+="cloud ebooks web antique inova_codebase yeti gffs/docs gffs/secrets gffs/code/fred-trunk /usr/local/feisty_meow "
+  REPOSITORY_LIST+="cloud ebooks web antique inova_codebase yeti gffs/docs gffs/secrets gffs/code/fred-trunk "
 
   # point to our local certificate for ssh usage.
   export SVN_SSH="ssh -i $HOME/.ssh/id_dsa_sourceforge"
index c5008149019df42b4a4905ea0893428692e26742..ed58906f270bf1d92c52f5e22c6b93145dbfb731 100644 (file)
@@ -9,7 +9,7 @@ echo "Committing repositories at: $(date)"
 
 if [ "$OS" != "Windows_NT" ]; then
   # first get individual folders.
-  checkin_list $HOME
+  checkin_list $HOME /usr/local
 else
   checkin_list $HOME c:/ d:/ e:/ 
 fi
index e8ff547f930d4a086369f6bb737dead2a71d3e4c..375f113537255bd89c30067ff408eeba5f2e46c9 100644 (file)
@@ -36,7 +36,7 @@ echo "Getting repositories at: $(date)"
 
 # perform the checkouts as appropriate per OS.
 if [ "$OS" != "Windows_NT" ]; then
-  checkout_list $HOME 2>&1 | tee -a "$TMPO_CHK"
+  checkout_list $HOME /usr/local 2>&1 | tee -a "$TMPO_CHK"
 else
   checkout_list $HOME c:/ d:/ e:/ 2>&1 | tee -a "$TMPO_CHK"
 fi