We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dad4249 commit 3da5de5Copy full SHA for 3da5de5
1 file changed
tools/build/build_asf.sh
100755
100644
@@ -102,6 +102,11 @@ esac
102
103
git clean -f
104
105
+#create a RC branch
106
+RELEASE_BRANCH="RC" + `date +%Y%m%dT%H%M`
107
+git branch $branch-$RELEASE_BRANCH
108
+
109
110
echo 'commit changes'
111
git commit -a -s -m "Updating pom.xml version numbers for release $version"
112
export commitsh=`git show HEAD | head -n 1 | cut -d ' ' -f 2`
@@ -164,8 +169,4 @@ if [ "$committosvn" == "yes" ]; then
164
169
svn commit -m "Committing release candidate artifacts for $version to dist/dev/cloudstack in preparation for release vote"
165
170
fi
166
171
167
-echo 'revert version changes'
168
-cd $sourcedir
-git revert --no-edit $commitsh
-
172
echo "completed. use commit-sh of $commitsh when starting the VOTE thread"
0 commit comments