summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jjb/releng/releng-release-create-branch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/releng/releng-release-create-branch.sh b/jjb/releng/releng-release-create-branch.sh
index 83755608e..92be0e637 100644
--- a/jjb/releng/releng-release-create-branch.sh
+++ b/jjb/releng/releng-release-create-branch.sh
@@ -31,7 +31,7 @@ for release_file in $RELEASE_FILES; do
NEW_FILES=$(git status --porcelain --untracked=no | cut -c4-)
if [ -n "$NEW_FILES" ]; then
git add $NEW_FILES
- git commit -m "Create Stable Branch Jobs for $(basename $release_file .yaml)"
+ git commit -sm "Create Stable Branch Jobs for $(basename $release_file .yaml)"
git push origin HEAD:refs/for/master
fi
done