diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> | 2006-09-05 07:56:52 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> | 2006-09-05 07:56:52 +0000 |
commit | a432355444edfc12434041eab3a7ec5d9f778706 (patch) | |
tree | 46829d974414ebd9c911748c6ada74d043225ed4 | |
parent | 26183757bfbb0dfe12983bde6d7577bad697bf6b (diff) | |
download | urpmi-a432355444edfc12434041eab3a7ec5d9f778706.tar urpmi-a432355444edfc12434041eab3a7ec5d9f778706.tar.gz urpmi-a432355444edfc12434041eab3a7ec5d9f778706.tar.bz2 urpmi-a432355444edfc12434041eab3a7ec5d9f778706.tar.xz urpmi-a432355444edfc12434041eab3a7ec5d9f778706.zip |
Don't show README.urpmi if the -q option is passed to urpmi
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3072,7 +3072,7 @@ sub install { #- keep safe exit now (with destructor call). exit 0; } else { #- parent process - if (keys %readmes) { + if ($::verbose >= 0 && keys %readmes) { foreach (keys %readmes) { print "-" x 70, "\n", N("More information on package %s", $readmes{$_}), "\n"; my $fh; open $fh, '<', $_ and do { |