2
0
forked from Wavyzz/dolibarr

Debug script

This commit is contained in:
ldestailleur
2025-09-17 14:17:29 +02:00
parent be6c3df029
commit f5d7d165b0

View File

@@ -4,9 +4,9 @@
commit_msg_file=$1
first_line=$(head -n1 "$commit_msg_file")
if echo "$first_line" | grep -Eq '^(QUAL|SEC|PERF|FIX|CLOSE|NEW|Clean code|Debug v)'; then
if echo "$first_line" | grep -Eqi '^(QUAL|SEC|PERF|FIX|CLOSE|NEW|Clean code|Debug)'; then
exit 0
else
echo "Le message de commit doit commencer par QUAL, SEC, PERF, FIX, CLOSE, NEW, Clean code, Debug v..."
echo "The commit message must start with QUAL, SEC, PERF, FIX, CLOSE, NEW, Clean code, Debug ..."
exit 1
fi