diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2006-03-03 15:53:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2006-03-03 15:53:22 +0000 |
commit | 5bb7b3fbb8b930af50fc2945367ef7c79715e186 (patch) | |
tree | 8b338ffdc8bbfd8e191947197d3498886002710c /mdkupdate | |
parent | d618ba396ff0d41034c3ab191dd555933dbcf9f2 (diff) | |
download | mgaonline-5bb7b3fbb8b930af50fc2945367ef7c79715e186.tar mgaonline-5bb7b3fbb8b930af50fc2945367ef7c79715e186.tar.gz mgaonline-5bb7b3fbb8b930af50fc2945367ef7c79715e186.tar.bz2 mgaonline-5bb7b3fbb8b930af50fc2945367ef7c79715e186.tar.xz mgaonline-5bb7b3fbb8b930af50fc2945367ef7c79715e186.zip |
simplify
Diffstat (limited to 'mdkupdate')
-rwxr-xr-x | mdkupdate | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -140,7 +140,7 @@ if (!$bundle) { $wc->{USER_EMAIL} or die("Configuration not uploaded to Mandriva Online"); my $res = mdkonline::prepare_upload_conf($wc); - if (my $version = $bundle_vars{CLIENT_VERSION} >= $VERSION) { + if ($bundle_vars{CLIENT_VERSION} >= $VERSION) { $in->ask_warn(N("Warning"), N("The version of the Mandriva Online client is too old. You need to update to a newer version. You can get a new one from http://start.mandriva.com")); @@ -151,12 +151,11 @@ You need to update to a newer version. You can get a new one from http://start.m if ($bundle_info->{status}) { my @bundles; my ($mirrors, $bundle) = ($bundle_info->{data}{mirrors}, $bundle_info->{data}{bundle}); - my %mirrors = map {split(';', $_, 2) } @$mirrors; + my %mirrors = map { split(';', $_, 2) } @$mirrors; add_media($_, $mirrors{$_}, 'media_info/hdlist.cz', '') foreach keys %mirrors; $bundle =~ s/\.rpm$//; - my $bundle_mirror = find { $_ =~ /^bundle/ } keys %mirrors; - push(@bundles, $bundle); - install_pkgs($in, \@bundles, $bundle_mirror, { is_bundle => 1 }); + push @bundles, $bundle; + install_pkgs($in, \@bundles, (find { /^bundle/ } keys %mirrors), { is_bundle => 1 }); } } |