From c551f854abc15ec2b98e30757703a3b6996e6f7f Mon Sep 17 00:00:00 2001 From: Chip Childers Date: Tue, 23 Apr 2013 19:48:30 +0100 Subject: [PATCH] Adding a hack to the RC spin script that removes all references to -SNAPSHOT from the debian/rules file. Also added an automatic revert of the verion bump to sure that I don't forget to do that. Signed-off-by: Chip Childers --- tools/build/build_asf.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tools/build/build_asf.sh b/tools/build/build_asf.sh index a4a4706c6d0..88f0e943dd1 100755 --- a/tools/build/build_asf.sh +++ b/tools/build/build_asf.sh @@ -94,6 +94,13 @@ mvn versions:set -DnewVersion=$version -P vmware -P developer -P systemvm -P sim mv deps/XenServerJava/pom.xml.versionsBackup deps/XenServerJava/pom.xml perl -pi -e 's/$ENV{'currentversion'}/$ENV{'version'}/' deps/XenServerJava/pom.xml perl -pi -e 's/$ENV{'currentversion'}/$ENV{'version'}/' tools/apidoc/pom.xml + +case "$version" in + *-SNAPSHOT*) + perl -pi -e 's/-SNAPSHOT//' debian/rules + ;; +esac + git clean -f echo 'commit changes' @@ -158,4 +165,7 @@ if [ "$committosvn" == "yes" ]; then svn commit -m "Committing release candidate artifacts for $version to dist/dev/cloudstack in preparation for release vote" fi +echo 'revert version changes' +git revert --no-edit $commitsh + echo "completed. use commit-sh of $commitsh when starting the VOTE thread"