summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 86378b3)
raw | patch | inline | side by side (parent: 86378b3)
author | Martin Langhoff <martin@catalyst.net.nz> | |
Sat, 24 Jun 2006 09:41:25 +0000 (21:41 +1200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 24 Jun 2006 10:06:30 +0000 (03:06 -0700) |
git-repack was passing the -q along to pack-objects but ignoring it
itself. Correct the oversight.
Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
itself. Correct the oversight.
Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-repack.sh | patch | blob | history |
diff --git a/git-repack.sh b/git-repack.sh
index 4fb3f26e834f78d40ea629dcd6732d390a129d58..eb75c8cda95dabe190cfe9ddba0c6bd7072615f2 100755 (executable)
--- a/git-repack.sh
+++ b/git-repack.sh
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" &&