diff options
| -rw-r--r-- | src/pacman/pacman.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 73f8c637..18422e39 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -88,6 +88,10 @@ int main(int argc, char *argv[])  	config = config_new();  	config->op = PM_OP_MAIN;  	config->debug |= PM_LOG_WARNING; +	/* disable progressbar if the output is redirected */ +	if(!isatty(1)) { +		config->noprogressbar = 1; +	}  	/* parse the command line */  	ret = parseargs(argc, argv); | 
