Tagged release 0.16.20.

This commit is contained in:
rakshasa
2026-08-06 10:11:01 +02:00
parent e56bffff4d
commit dd3ddf7c39
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ jobs:
# 2. Check for multiple consecutive blank lines
# This regex looks for 2 or more empty lines anywhere in the message
if echo "$CLEAN_MSG" | grep -pz '(\r?\n){3,}'; then
if echo "$CLEAN_MSG" | grep -Pz '(\r?\n){3,}'; then
echo "❌ Error: Commit message contains multiple consecutive line breaks."
echo " Commit: '$SUBJECT'"
FAILED=1