show-ref: fix --quiet --verify

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-12-17 18:53:24 -08:00
Родитель 00bc0ec262
Коммит dd9142993c
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -218,9 +218,11 @@ int cmd_show_ref(int argc, const char **argv, const char *prefix)
unsigned char sha1[20];
while (*pattern) {
if (resolve_ref(*pattern, sha1, 1, NULL))
printf("%s %s\n", sha1_to_hex(sha1),
*pattern);
if (resolve_ref(*pattern, sha1, 1, NULL)) {
if (!quiet)
printf("%s %s\n",
sha1_to_hex(sha1), *pattern);
}
else if (!quiet)
die("'%s' - not a valid ref", *pattern);
else