From: Oleg Broytman Date: Fri, 1 Jan 2021 19:39:37 +0000 (+0300) Subject: Fix: `ls-not-packed` -> `ls-not-packed-repos` X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=90e28dbc446b6b59cbf317bc54613e7fb25597ea;p=git-scripts.git Fix: `ls-not-packed` -> `ls-not-packed-repos` --- diff --git a/gc-not-packed-repos b/gc-not-packed-repos index f7b7c78..a7f470f 100755 --- a/gc-not-packed-repos +++ b/gc-not-packed-repos @@ -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 diff --git a/set-commit-date-not-packed b/set-commit-date-not-packed index e1c6928..eafa348 100755 --- a/set-commit-date-not-packed +++ b/set-commit-date-not-packed @@ -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