diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2018-03-05 19:23:12 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2018-03-06 07:12:58 +0100 |
| commit | 46da44abbedc58b918fa78c022bde2afcdd3ef6e (patch) | |
| tree | 31af272689994c2abff36fa198b729e57ba96cf7 /hooks/post-commit | |
| download | memory-leaks-46da44abbedc58b918fa78c022bde2afcdd3ef6e.tar.xz | |
Add title page and word-count script
Diffstat (limited to 'hooks/post-commit')
| -rwxr-xr-x | hooks/post-commit | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/hooks/post-commit b/hooks/post-commit new file mode 100755 index 0000000..8e92990 --- /dev/null +++ b/hooks/post-commit @@ -0,0 +1,19 @@ +#!/bin/bash + +if [ -f .UPDATING_COUNT ] +then + exit 0 +fi + +echo "Checking word count…" + +./update-count.sh + +if git diff --quiet --exit-code -- index.md +then + exit 0 +fi + +touch .UPDATING_COUNT +git commit --amend --no-edit -- index.md +rm .UPDATING_COUNT |
