From 7851ef7ca12a65857eb275995f1a7a0333daadad Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Thu, 21 Sep 2006 15:41:07 +0000 Subject: When printing a list of long packages urls, separate them by newlines for readability. --- urpmi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urpmi b/urpmi index bc107a07..c6dc25bd 100755 --- a/urpmi +++ b/urpmi @@ -717,7 +717,7 @@ foreach my $set (@{$state->{transaction} || []}) { #- there's a common prefix, simplify message print N("installing %s from %s", join(' ', map { s/.*\///; $_ } @packnames), $common_prefix), "\n"; } else { - print N("installing %s", "@packnames"), "\n"; + print N("installing %s", join "\n", @packnames), "\n"; } my $to_remove = $urpm->{options}{'allow-force'} ? [] : ($set->{remove} || []); @$to_remove and print N("removing %s", "@$to_remove"), "\n"; -- cgit v1.2.1