summaryrefslogtreecommitdiffstats
path: root/perl-install/install/http.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-05-23 18:27:20 +0000
committerThierry Vignaud <tv@mageia.org>2012-05-23 18:27:20 +0000
commitc47225a60af9087ee5e7c132a3f0d105e581324d (patch)
treee035185f7bf1374bd5b18df0cc58a78950b52b49 /perl-install/install/http.pm
parent69c943546900de2d72995751370e29d55dc43218 (diff)
downloaddrakx-backup-do-not-use-c47225a60af9087ee5e7c132a3f0d105e581324d.tar
drakx-backup-do-not-use-c47225a60af9087ee5e7c132a3f0d105e581324d.tar.gz
drakx-backup-do-not-use-c47225a60af9087ee5e7c132a3f0d105e581324d.tar.bz2
drakx-backup-do-not-use-c47225a60af9087ee5e7c132a3f0d105e581324d.tar.xz
drakx-backup-do-not-use-c47225a60af9087ee5e7c132a3f0d105e581324d.zip
(get_file_and_size) drop workaround for urpmi dying when downloader
fails and leaving us in another directory now that urpmi is fixed why didn't you fixed urpmi directly blino???
Diffstat (limited to 'perl-install/install/http.pm')
-rw-r--r--perl-install/install/http.pm5
1 files changed, 0 insertions, 5 deletions
diff --git a/perl-install/install/http.pm b/perl-install/install/http.pm
index 1ddf986a1..da6d6982c 100644
--- a/perl-install/install/http.pm
+++ b/perl-install/install/http.pm
@@ -56,12 +56,7 @@ sub get_file_and_size {
urpm::download::set_cmdline_proxy(http_proxy => "http://$proxy/");
}
- (my $cwd) = getcwd() =~ /(.*)/;
my $res = eval { urpm::download::sync_url($urpm, $url, %o_options, dir => $cachedir) };
- #- urpmi does not always reset cwd when dying or failing!
- #- do not stay in /mnt/var/cache/urpmi, it's evil to be in /mnt
- #- FIXME: fix urpmi
- chdir $cwd;
if ($res) {
open(my $f, $file);