diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-04 13:28:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-04 13:28:03 +0000 |
commit | 0e52aaca27cc67f04a94d0b3bc1cff7e1230c31c (patch) | |
tree | ef730cdb53704479a0596c1f50765bd9fa76f6ed | |
parent | cf69c19644faf7ce0ea8ae8428cb7bbd45398f74 (diff) | |
download | mgaonline-0e52aaca27cc67f04a94d0b3bc1cff7e1230c31c.tar mgaonline-0e52aaca27cc67f04a94d0b3bc1cff7e1230c31c.tar.gz mgaonline-0e52aaca27cc67f04a94d0b3bc1cff7e1230c31c.tar.bz2 mgaonline-0e52aaca27cc67f04a94d0b3bc1cff7e1230c31c.tar.xz mgaonline-0e52aaca27cc67f04a94d0b3bc1cff7e1230c31c.zip |
(is_there_a_new_distributions) fix dowloading distributions list by downloading in a writeable directory
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | mdkapplet | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ - mdkapplet: + o fix dowloading distributions list o offer to add media directly from bubble (#39987) o prevent running media manager more than one at a time o run media manager with --no-splash' option and handle "--urpmi-root=$root" @@ -263,7 +263,7 @@ sub is_there_a_new_distributions() { my @lines = eval { my $urpm = Rpmdrake::open_db::fast_open_urpmi_db(); - my $res = urpm::download::sync($urpm, undef, [ $list ], dir => $urpm->{cachedir} || '/root'); + my $res = urpm::download::sync($urpm, undef, [ $list ], dir => urpm::userdir($urpm) || $urpm->{cachedir}); $res or die sprintf("retrieval of [%s] failed", $list) . "\n"; }; |