2019-04-18 19:02:06 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-07-27 16:14:18 +00:00
|
|
|
#### $$VERSION$$ 0.99-0-g2775000
|
2019-04-25 12:45:16 +00:00
|
|
|
|
|
|
|
############
|
|
|
|
# NOTE: you MUST run install-hooks.sh again when updating this file!
|
2019-04-18 19:02:06 +00: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 08:43:06 +00:00
|
|
|
|
2019-04-19 11:01:25 +00:00
|
|
|
export HOOKDIR="dev/hooks"
|
2019-04-25 11:54:31 +00:00
|
|
|
LASTPUSH='.git/.lastpush'
|
2019-04-18 19:02:06 +00:00
|
|
|
|
|
|
|
# if any command inside script returns error, exit and return that error
|
|
|
|
set -e
|
|
|
|
|
2019-04-22 18:34:43 +00:00
|
|
|
echo "Running pre-push hook"
|
2019-04-18 19:02:06 +00:00
|
|
|
echo "............................"
|
|
|
|
|
|
|
|
unset IFS; set -f
|
|
|
|
|
2019-04-25 11:54:31 +00:00
|
|
|
# note date of last push for version
|
|
|
|
touch "${LASTPUSH}"
|