1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-24 06:06:14 +02:00

builtin/repack.c: extract showing progress to a variable

We only ask whether stderr is a tty before calling
'prune_packed_objects()', but the subsequent patch will add another use.

Extract this check into a variable so that both can use it without
having to call 'isatty()' twice.

Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Taylor Blau 2021-09-28 21:55:15 -04:00 committed by Junio C Hamano
parent a169166d2b
commit 5f18e31f46

View File

@ -446,6 +446,7 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
struct strbuf line = STRBUF_INIT;
int i, ext, ret;
FILE *out;
int show_progress = isatty(2);
/* variables to be filled by option parsing */
int pack_everything = 0;
@ -719,7 +720,7 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
}
strbuf_release(&buf);
}
if (!po_args.quiet && isatty(2))
if (!po_args.quiet && show_progress)
opts |= PRUNE_PACKED_VERBOSE;
prune_packed_objects(opts);