#! /bin/sh # Call set-commit-date-recursive on all not-packed repositories cd "`dirname \"$0\"`" && prog_dir="`pwd`" && for d in `"$prog_dir"/ls-not-packed-repos` do cd "$d"; test -d .git || continue && echo "----- $d -----"; "$prog_dir"/set-commit-date-recursive || exit 1 done