From 1054dcd1652644f3a80cf6ce546d24c1fee4066a Mon Sep 17 00:00:00 2001 From: Martin Langhoff Date: Sat, 24 Jun 2006 21:41:25 +1200 Subject: [PATCH] git-repack -- respect -q and be quiet git-repack was passing the -q along to pack-objects but ignoring it itself. Correct the oversight. Signed-off-by: Martin Langhoff Signed-off-by: Junio C Hamano --- git-repack.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/git-repack.sh b/git-repack.sh index 4fb3f26e83..eb75c8cda9 100755 --- a/git-repack.sh +++ b/git-repack.sh @@ -49,8 +49,9 @@ name=$(git-rev-list --objects --all $rev_list 2>&1 | if [ -z "$name" ]; then echo Nothing new to pack. else - echo "Pack pack-$name created." - + if test "$quiet" != '-q'; then + echo "Pack pack-$name created." + fi mkdir -p "$PACKDIR" || exit mv .tmp-pack-$name.pack "$PACKDIR/pack-$name.pack" && -- 2.11.4.GIT