k3s/hooks/commit-msg

11 lines
205 B
Plaintext
Raw Normal View History

2014-06-06 23:40:48 +00:00
#!/bin/bash
if [[ "$(grep -c "COMMIT_BLOCKED" $1)" -gt 0 ]]; then
echo "FAILED: Unresolved errors - aborting the commit."
2014-06-06 23:40:48 +00:00
echo "The message of your attempted commit was:"
cat $1
exit 1
fi
exit 0