]> git.phdru.name Git - git-scripts.git/commitdiff
Fix: `ls-not-packed` -> `ls-not-packed-repos`
authorOleg Broytman <phd@phdru.name>
Fri, 1 Jan 2021 19:39:37 +0000 (22:39 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 1 Jan 2021 19:39:37 +0000 (22:39 +0300)
gc-not-packed-repos
set-commit-date-not-packed

index f7b7c78ab08944f88efd924231f75500bf3cf6f5..a7f470fc30cb1ca534bf5c5d1950ceecf4010d11 100755 (executable)
@@ -3,7 +3,7 @@
 cd "`dirname \"$0\"`" &&
 prog_dir="`pwd`" &&
 
-for d in `"$prog_dir"/ls-not-packed`
+for d in `"$prog_dir"/ls-not-packed-repos`
 do
    echo "----- $d -----" && cd "$d" &&
    "$prog_dir"/gc-not-packed-recursive || exit 1
index e1c6928183d8d6a812ca440c8a9b7267fc0096c9..eafa3487e2207b756bcd1a0d1d232f57efb04afa 100755 (executable)
@@ -3,7 +3,7 @@
 # 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