From: Chris Koeritz Date: Sun, 9 Sep 2012 22:46:14 +0000 (-0400) Subject: updated. X-Git-Tag: 2.140.90~1250 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=efbd874f9287fe8b4d6062e8fc698f051b5c1e1f;p=feisty_meow.git updated. --- diff --git a/scripts/rev_control/report_new_files.sh b/scripts/rev_control/report_new_files.sh new file mode 100644 index 00000000..6f2e2ecc --- /dev/null +++ b/scripts/rev_control/report_new_files.sh @@ -0,0 +1,17 @@ +#!/bin/bash + + + +# a simple script for updating a set of folders on a usb stick from subversion or git. currently +# just runs with no parameters and expects to get all archives from wherever the files originally +# came from. +for i in * ; do + if [ -d "$i" ]; then + pushd $i + # only update if we see a repository living there. + if [ -d ".svn" ]; then + bash $FEISTY_MEOW_SCRIPTS/rev_control/svnapply.sh \? echo + fi + popd + fi +done