fix(*): Added git-commit hook 🔨
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline failed

This commit is contained in:
2024-04-02 14:01:20 +13:00
parent 77fb819342
commit 274cabf05a

View File

@@ -3,7 +3,7 @@
# Run the script and get the return code if successful of if fails
./scripts/commit-filter-check.sh && rc=$? || rc=$?
echo return code : $rc
if [ ${rc} == 1 ]; then
if [ ${rc} = 1 ]; then
echo "Script return code 1 so commit failed"
exit 1
else