summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan S. Arnold <ryan.arnold@linaro.org>2015-07-17 13:00:27 -0500
committerRyan S. Arnold <ryan.arnold@linaro.org>2015-07-17 15:07:22 -0500
commit1f326f6989f8efb602c7fe07031bb051307bf74d (patch)
treec6b32202f84cfa33521996f0bb29a84f2bec1ed1
parent52c9de70887f0fa97abc46c4416838efbc4a856a (diff)
The commit message for the snap/rel/rc should be ChangeLog conforming
Change-Id: Ic49aaa6989e15a36a1797ca5716c57f2c81b5402
-rwxr-xr-xtcwg-release.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/tcwg-release.sh b/tcwg-release.sh
index 6a8b352..5a6be74 100755
--- a/tcwg-release.sh
+++ b/tcwg-release.sh
@@ -277,7 +277,16 @@ EOF
done
pushd $REL_DIR/git 1>/dev/null
- git commit -a -m "${commitmsg}"
+ if [ ${vstring%%.*} -ge "5" ]; then
+ git commit -a -F- <<EOF
+${commitmsg}
+
+ gcc/
+ * LINARO-VERSION: Update.
+EOF
+ else
+ git commit -a -m "${commitmsg}"
+ fi
popd 1>/dev/null
}