Separators "-----" are required if there is repository-related output
after them, but do not required if the output is repo name only.
for d in `"$prog_dir"/ls-not-packed`
do
cd "$d"; test -d .git || continue &&
- echo "$d"; "$prog_dir"/set-commit-date-recursive || exit 1
+ echo "----- $d -----"; "$prog_dir"/set-commit-date-recursive || exit 1
done
exec "$prog_dir"/do-all \
'test "$g" = "$d/.git" || continue &&' \
- 'cd "$d"; echo "$d"; "$prog_dir"/set-commit-date-recursive'
+ 'cd "$d"; echo "----- $d -----"; "$prog_dir"/set-commit-date-recursive'
'test "$g" = "$d/.git" || continue; cd "$d" &&' \
'not_up="`git remote | xargs -n1 git remote show | ' \
'grep -F \" pushes to \" | grep -Fv \"(up to date)\"`" &&' \
- 'test -n "$not_up" && echo "----- $d -----"'
+ 'test -n "$not_up" && echo "$d"'