* [PATCH] checkout: hide progress bar when stderr is not a tty
@ 2009-07-30 16:13 Michal Marek
0 siblings, 0 replies; only message in thread
From: Michal Marek @ 2009-07-30 16:13 UTC (permalink / raw)
To: git
The correct fix would be in start_progress_delay(), however this breaks
the progress bar for fetch/push via ssh. So fix it in this caller which
will always run locally.
Signed-off-by: Michal Marek <mmarek@suse.cz>
---
unpack-trees.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/unpack-trees.c b/unpack-trees.c
index 720f7a1..a11f559 100644
--- a/unpack-trees.c
+++ b/unpack-trees.c
@@ -75,7 +75,7 @@ static int check_updates(struct unpack_trees_options *o)
int i;
int errs = 0;
- if (o->update && o->verbose_update) {
+ if (o->update && o->verbose_update && isatty(STDERR_FILENO)) {
for (total = cnt = 0; cnt < index->cache_nr; cnt++) {
struct cache_entry *ce = index->cache[cnt];
if (ce->ce_flags & (CE_UPDATE | CE_REMOVE))
--
1.6.4.13.ge6580.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-07-30 16:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-30 16:13 [PATCH] checkout: hide progress bar when stderr is not a tty Michal Marek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).