summaryrefslogtreecommitdiffstats
path: root/urpmq
diff options
context:
space:
mode:
Diffstat (limited to 'urpmq')
-rwxr-xr-xurpmq4
1 files changed, 3 insertions, 1 deletions
diff --git a/urpmq b/urpmq
index 81f8a71d..448274a9 100755
--- a/urpmq
+++ b/urpmq
@@ -193,7 +193,9 @@ if ($options{list_aliases}) {
foreach (@{$urpm->{media}}) {
$_->{update} and print "--update ";
$_->{virtual} and print "--virtual ";
- print escape_shell($_->{name}), " ", escape_shell($_->{url}), " ";
+ $_->{mirrorlist} and print "--mirrorlist $_->{mirrorlist} ";
+ print escape_shell($_->{name}), " ";
+ print escape_shell($_->{mirrorlist} ? $_->{'with-dir'} : $_->{url}), " " if !$_->{mirrorlist} || $_->{'with-dir'};
$_->{with_synthesis} and print "with " . escape_shell($_->{with_synthesis});
print "\n";
}