X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=set-commit-date-not-packed;h=eafa3487e2207b756bcd1a0d1d232f57efb04afa;hb=574812d8ad8f45eb167409da2e18e7243ec95a35;hp=1073bc8e19d969765011e31d61d5d05988723858;hpb=8acd6f41a8545f7f42bbd9a5b0b731b2bdc3c644;p=git-scripts.git diff --git a/set-commit-date-not-packed b/set-commit-date-not-packed index 1073bc8..eafa348 100755 --- a/set-commit-date-not-packed +++ b/set-commit-date-not-packed @@ -3,8 +3,8 @@ # Call set-commit-date-recursive on all not-packed repositories cd "`dirname \"$0\"`" && prog_dir="`pwd`" && -for d in `"$prog_dir"/ls-not-packed` +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 + echo "----- $d -----"; "$prog_dir"/set-commit-date-recursive || exit 1 done