diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-11 08:56:46 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-11 08:56:46 +0000 |
commit | 9df41c80fe74a07f057e2f711649018748604e9e (patch) | |
tree | 63c63f2aba336c6ae8a427502347bb2da76e7ddd /urpm/main_loop.pm | |
parent | 180517d0747a14ef222e7ca6cfcf022275d31450 (diff) | |
download | urpmi-9df41c80fe74a07f057e2f711649018748604e9e.tar urpmi-9df41c80fe74a07f057e2f711649018748604e9e.tar.gz urpmi-9df41c80fe74a07f057e2f711649018748604e9e.tar.bz2 urpmi-9df41c80fe74a07f057e2f711649018748604e9e.tar.xz urpmi-9df41c80fe74a07f057e2f711649018748604e9e.zip |
move cleaning of cachedir out of selected2list()
Diffstat (limited to 'urpm/main_loop.pm')
-rw-r--r-- | urpm/main_loop.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/urpm/main_loop.pm b/urpm/main_loop.pm index 12ff4291..b3eb5e0d 100644 --- a/urpm/main_loop.pm +++ b/urpm/main_loop.pm @@ -38,9 +38,10 @@ sub run { my ($auto_select, $no_install, $install_src, $clean, $noclean, $force, $parallel, $test, $env) = ($::auto_select, $::no_install, $::install_src, $::clean, $::noclean, $::force, $::parallel, $::test, $::env); + urpm::get_pkgs::clean_all_cache($urpm) if $clean; + my ($local_sources, $list) = urpm::get_pkgs::selected2list($urpm, $state->{selected}, - clean_all => $clean, clean_other => !$noclean && $urpm->{options}{'pre-clean'}, ); unless ($local_sources || $list) { |