35 lines
1002 B
Bash
Raw Normal View History

2019-04-18 21:02:06 +02:00
#!/usr/bin/env bash
2020-07-01 12:23:57 +02:00
#### $$VERSION$$ v0.98-0-g5b5447e
############
# NOTE: you MUST run install-hooks.sh again when updating this file!
2019-04-18 21:02:06 +02:00
# magic to ensure that we're always inside the root of our application,
# no matter from which directory we'll run script
GIT_DIR=$(git rev-parse --git-dir)
cd "$GIT_DIR/.." || exit 1
2019-04-19 10:43:06 +02:00
2019-04-19 13:01:25 +02:00
export HOOKDIR="dev/hooks"
LASTPUSH='.git/.lastpush'
2019-04-18 21:02:06 +02:00
# if any command inside script returns error, exit and return that error
set -e
2019-04-22 20:34:43 +02:00
echo "Running pre-push hook"
2019-04-18 21:02:06 +02:00
echo "............................"
unset IFS; set -f
if which codespell &>/dev/null; then
echo "Running codespell"
echo "............................"
codespell -B 1 --skip="*.log,*.html,*.txt,.git*" -L "ba"
echo "if there are (to many) typo's shown, consider running:"
echo "codespell -i 3 -w --skip=\"*.log,*.html,*.txt,.git*\" -L \"ba\""
else
echo "consider installing codespell: pip install codespell"
fi
echo "............................"
# note date of last push for version
touch "${LASTPUSH}"