summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2019-10-21 13:06:25 +0200
committerBastien Nocera <hadess@hadess.net>2019-10-23 10:56:35 +0200
commitb6170dbe7bff9d59f5f02d70eda469a03e437166 (patch)
tree421d21ebd9e314cec586be8ec944635f4df10679 /.gitlab-ci
parentd6bf4800ed7c700b9c7353ac33b6afb2b96beab7 (diff)
downloadmutter-b6170dbe7bff9d59f5f02d70eda469a03e437166.tar.gz
ci: Phrase error in a way that gives a hint on how to fix problem
The passive phrasing makes it sound like there's something inherently broken with the commit, rather than simply being missing an annotation that the author can add. Closes: #1809
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x.gitlab-ci/check-commit-log.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/check-commit-log.sh b/.gitlab-ci/check-commit-log.sh
index ae696eb8b..c331a0273 100755
--- a/.gitlab-ci/check-commit-log.sh
+++ b/.gitlab-ci/check-commit-log.sh
@@ -44,7 +44,7 @@ for commit in $commits; do
commit_short=$(echo $commit | cut -c -8)
if ! commit_message_has_url $commit; then
- echo "Missing merge request or issue URL on commit $commit_short"
+ echo "Commit $commit_short needs a merge request or issue URL"
exit 1
fi