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
parent
54adf3706c
commit
d9fb395ae3
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue