summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-07-21 14:38:06 +0000
committerThierry Vignaud <tv@mandriva.org>2009-07-21 14:38:06 +0000
commit4dae4cba7e8e0af534297dca71a15fdecc9556c4 (patch)
tree0e2dd713cd45175eadd8b9c79a5f66cd8262639e
parent49d25f58656a2124f38dacd1c3c769c8feccec8d (diff)
downloadmgaonline-4dae4cba7e8e0af534297dca71a15fdecc9556c4.tar
mgaonline-4dae4cba7e8e0af534297dca71a15fdecc9556c4.tar.gz
mgaonline-4dae4cba7e8e0af534297dca71a15fdecc9556c4.tar.bz2
mgaonline-4dae4cba7e8e0af534297dca71a15fdecc9556c4.tar.xz
mgaonline-4dae4cba7e8e0af534297dca71a15fdecc9556c4.zip
reintroduce check for 'Devel' branch for cooker (reverting part of commit from
2009/09/30 that supplanted it with a new test that will be changed in next commit) ; previous commit was: (is_there_a_new_distributions) better check in order to exclude cooker from distro upgrade rationale: older/unsupported distro aren't in the list as well as cooker (2009.1 won't be in the list)
-rwxr-xr-xmdkapplet3
1 files changed, 3 insertions, 0 deletions
diff --git a/mdkapplet b/mdkapplet
index 623e099f..8b5047d5 100755
--- a/mdkapplet
+++ b/mdkapplet
@@ -319,6 +319,9 @@ sub is_there_a_new_distributions() {
get_product_id();
return if $product_id->{product} =~ /Flash/;
+ # sanity check for cooker:
+ return if $product_id->{branch} eq 'Devel';
+
my @lines = get_distro_list();
if (my $err = $@) {