X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fversion_control.sh;h=b28d6f303b7e69fc1edb7daa971e3ecfa8f2c3e7;hb=ba3dab0632f2eedfce6f724d76a9c967ccb9fe90;hp=4a8a542da87620c85e47b49a7d341fce91764e57;hpb=ac91271f90ccd1514c81e068c7290b8a23e1862b;p=feisty_meow.git diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 4a8a542d..b28d6f30 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -307,13 +307,13 @@ function generate_rev_ctrl_filelist() local dir="$1"; shift pushd "$dir" &>/dev/null local dirhere="$( \cd "$(\dirname "$dir")" && /bin/pwd )" - local tempfile=$(mktemp /tmp/zz_rev_checkin.XXXXXX) + local tempfile=$(mktemp /tmp/zz_checkins.XXXXXX) echo >$tempfile 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 - local sortfile=$(mktemp /tmp/zz_rev_checkin_sort.XXXXXX) + local sortfile=$(mktemp /tmp/zz_checkin_sort.XXXXXX) sort <"$tempfile" >"$sortfile" \rm "$tempfile" echo "$sortfile"