diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-10-16 09:14:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-10-16 09:14:32 +0000 |
commit | 0bfe26fdb005576a43bccbdfb79f11ad1837f40b (patch) | |
tree | 84be94db321993139105daa03f3fbab3a3cac90e /gurpmi2 | |
parent | 9543445477fb627aea85d3ba8a2091c30505bab9 (diff) | |
download | urpmi-0bfe26fdb005576a43bccbdfb79f11ad1837f40b.tar urpmi-0bfe26fdb005576a43bccbdfb79f11ad1837f40b.tar.gz urpmi-0bfe26fdb005576a43bccbdfb79f11ad1837f40b.tar.bz2 urpmi-0bfe26fdb005576a43bccbdfb79f11ad1837f40b.tar.xz urpmi-0bfe26fdb005576a43bccbdfb79f11ad1837f40b.zip |
- gurpmi
o display the download errors
Diffstat (limited to 'gurpmi2')
-rwxr-xr-x | gurpmi2 | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -136,6 +136,10 @@ sub configure_urpm() { $urpm->{error} = sub { my ($message) = @_; printf STDERR "%s\n", $message; + + if (my $download_errors = delete $urpm->{download_errors}) { + $message = join("\n", @$download_errors, $message); + } my $nb_lines = $message =~ tr/\n/\n/; my $w; if ($nb_lines > 30) { @@ -336,6 +340,9 @@ sub do_install_3 () { $set_progressbar->($percent / 100); } elsif ($mode eq 'end') { $set_progressbar->(1); + } elsif ($mode eq 'error') { + #- error is 3rd argument, saved in $percent + push @{$urpm->{download_errors}}, N("...retrieving failed: %s", $percent); } sync(); }, |