.builds: clarify missing sign-off error message

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2020-12-17 21:35:18 +01:00
parent cb075ea9cf
commit 74cee277ca
+1 -1
View File
@@ -92,7 +92,7 @@ tasks:
for hash in $(git log -n 20 --format="%H"); do
message=$(git log -1 --format=%B $hash)
if [[ ! "$message" =~ "Signed-off-by: " ]]; then
echo "unsigned commit $hash"
echo "Missing 'Signed-off-by' in commit $hash"
exit 1
fi
done