summaryrefslogtreecommitdiffstats
path: root/urpmq
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-08-01 15:44:40 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-08-01 15:44:40 +0000
commite6d6502758210991a8fff3159b62f386138f6477 (patch)
tree50a33822b47b59db949174e8dd12abe3b58d0122 /urpmq
parent348de183f06992ca578503bdba9ce28f15f6ba76 (diff)
downloadurpmi-e6d6502758210991a8fff3159b62f386138f6477.tar
urpmi-e6d6502758210991a8fff3159b62f386138f6477.tar.gz
urpmi-e6d6502758210991a8fff3159b62f386138f6477.tar.bz2
urpmi-e6d6502758210991a8fff3159b62f386138f6477.tar.xz
urpmi-e6d6502758210991a8fff3159b62f386138f6477.zip
factorize handling of -q|--quiet and -v|--verbose for all tools
this fixes -q option not handled by urpmi.update (#31890)
Diffstat (limited to 'urpmq')
-rwxr-xr-xurpmq2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpmq b/urpmq
index 65a95ade..ce367196 100755
--- a/urpmq
+++ b/urpmq
@@ -121,7 +121,7 @@ urpm::args::parse_cmdline(urpm => $urpm) or exit(1);
#- we really don't want logs on stdout, and remove verbose if not asked.
$urpm->{info} = sub { print STDERR "$_[0]\n" };
-$urpm->{log} = $options{verbose} ? sub { print STDERR "$_[0]\n" } : sub {};
+$urpm->{log} = sub { print STDERR "$_[0]\n" } if $options{verbose} > 0;
#- improve speed if using any list_... options.
$options{nodepslist} = $options{list_aliases}