From 715b0b86b564ad8d625914110b802aaf4bb915fd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 8 Feb 2011 16:25:40 +0100 Subject: [PATCH] Do not mark anything from 3.3 branch as testing --- scripts/create-release.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/create-release.sh b/scripts/create-release.sh index 87a1bff60..e7d6f39ad 100755 --- a/scripts/create-release.sh +++ b/scripts/create-release.sh @@ -243,7 +243,11 @@ if [ $# -gt 0 ] ; then else # We update both branches here # As it does not make sense to have older testing than stable - mark_as_release $branch TESTING + if echo $version | grep -q '^3\.3\.' ; then + echo '* 3.3 branch, no TESTING update' + else + mark_as_release $branch TESTING + fi mark_as_release $branch STABLE fi git checkout master -- 2.11.4.GIT