diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-08 09:18:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-08 09:18:18 +0000 |
commit | fc53c4b6e0ff41608fb7cba69a4f44ed0d09d46e (patch) | |
tree | d41ce14ac965d624e9c020e13369d46cf1d7ea78 | |
parent | 71aad69bc784431f72b97cc60a2befdf9d768d7c (diff) | |
download | urpmi-fc53c4b6e0ff41608fb7cba69a4f44ed0d09d46e.tar urpmi-fc53c4b6e0ff41608fb7cba69a4f44ed0d09d46e.tar.gz urpmi-fc53c4b6e0ff41608fb7cba69a4f44ed0d09d46e.tar.bz2 urpmi-fc53c4b6e0ff41608fb7cba69a4f44ed0d09d46e.tar.xz urpmi-fc53c4b6e0ff41608fb7cba69a4f44ed0d09d46e.zip |
make it more explicit we are actually testing removal, not really removing
-rw-r--r-- | urpme | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -160,7 +160,9 @@ if ($urpm->{options}{auto}) { } #- Warning : the following message is parsed in urpm::parallel_* -print N("removing %s", join(' ', sort @toremove)) . "\n"; +print $test ? + N("testing removal of %s", join(' ', sort @toremove)) : + N("removing %s", join(' ', sort @toremove)), "\n"; my %remove_options = ( test => $test, |