diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-01-26 16:48:39 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-01-26 16:48:39 +0000 |
commit | 4f57f188a0b2567175aa43ab29e579c2fa298309 (patch) | |
tree | 0e659e3915bea5a8ccc9795ff1c8a041b239379f | |
parent | 7f73c98df7c7441701de188ce6a4025362a42480 (diff) | |
download | mgaonline-4f57f188a0b2567175aa43ab29e579c2fa298309.tar mgaonline-4f57f188a0b2567175aa43ab29e579c2fa298309.tar.gz mgaonline-4f57f188a0b2567175aa43ab29e579c2fa298309.tar.bz2 mgaonline-4f57f188a0b2567175aa43ab29e579c2fa298309.tar.xz mgaonline-4f57f188a0b2567175aa43ab29e579c2fa298309.zip |
(is_there_a_new_distributions) fix check on 2008.0 which wrongly
reports 'Devel' instead of 'Official'
-rwxr-xr-x | mdkapplet | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -286,7 +286,8 @@ ugtk2::exit(0); sub is_there_a_new_distributions() { # sanity check for cooker: - return if $product_id->{branch} eq 'Devel'; + # (2008.0 wrongly reports 'Devel' instead of 'Official'): + return if $product_id->{branch} eq 'Devel' && !is_it_2008_0(); my @distros = get_distro_list(); return if !@distros; |