summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/apk.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/apk.c b/src/apk.c
index 3de5ca4..0c2482f 100644
--- a/src/apk.c
+++ b/src/apk.c
@@ -368,7 +368,10 @@ static void setup_automatic_flags(struct apk_ctx *ac)
!isatty(STDIN_FILENO))
return;
- ac->progress.out = &ac->out;
+ /* Enable progress bar by default, except on dumb terminals. */
+ if (!(tmp = getenv("TERM")) || strcmp(tmp, "dumb") != 0)
+ ac->progress.out = &ac->out;
+
if (!(ac->flags & APK_SIMULATE) &&
access("/etc/apk/interactive", F_OK) == 0)
ac->flags |= APK_INTERACTIVE;