diff options
-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"; }; |