From: Chris Koeritz Date: Sat, 4 Nov 2017 22:18:44 +0000 (-0400) Subject: implemented vendor check-in filter X-Git-Tag: 2.140.90~86 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=2ad8e026a2b6d85e3b803fdf14491a1d455ba913;p=feisty_meow.git implemented vendor check-in filter --- diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index e1b01e94..2de20b0b 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -362,13 +362,16 @@ function generate_rev_ctrl_filelist() local tempfile=$(mktemp /tmp/zz_checkins.XXXXXX) echo >$tempfile local additional_filter - if [ ! -z "NO_CHECKIN_VENDOR" ]; then - additional_filter='-a ! -iname "*\/vendor\/*" ' - fi - find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".svn" $additional_filter -exec echo {}/.. ';' >>$tempfile 2>/dev/null - find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".git" $additional_filter -exec echo {}/.. ';' >>$tempfile 2>/dev/null + find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".svn" -exec echo {}/.. ';' >>$tempfile 2>/dev/null + find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".git" -exec echo {}/.. ';' >>$tempfile 2>/dev/null # CVS is not well behaved like git and (now) svn, and we seldom use it anymore. popd &>/dev/null + + # see if they've warned us not to try checking in within vendor hierarchies. + if [ ! -z "NO_CHECKIN_VENDOR" ]; then + sed -i -e '/.*\/vendor\/.*/d' "$tempfile" + fi + local sortfile=$(mktemp /tmp/zz_checkin_sort.XXXXXX) sort <"$tempfile" >"$sortfile" \rm "$tempfile"