repack: don't report "Nothing new to pack." if -q is given

Signed-off-by: Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Uwe Kleine-König 2007-07-03 10:47:58 +02:00 committed by Junio C Hamano
parent 54adf3706c
commit d9fb395ae3
1 changed files with 3 additions and 1 deletions

View File

@ -66,7 +66,9 @@ args="$args $local $quiet $no_reuse$extra"
names=$(git pack-objects --non-empty --all --reflog $args </dev/null "$PACKTMP") ||
exit 1
if [ -z "$names" ]; then
echo Nothing new to pack.
if test -z "$quiet"; then
echo Nothing new to pack.
fi
fi
for name in $names ; do
fullbases="$fullbases pack-$name"