]> git.phdru.name Git - git-scripts.git/blobdiff - set-commit-date-not-packed
Feat(submodules/remove): Add option `-c`
[git-scripts.git] / set-commit-date-not-packed
index 1073bc8e19d969765011e31d61d5d05988723858..eafa3487e2207b756bcd1a0d1d232f57efb04afa 100755 (executable)
@@ -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