2019-04-18 21:02:06 +02:00
|
|
|
#!/usr/bin/env bash
|
2022-06-27 20:18:58 +02:00
|
|
|
#### $$VERSION$$ v1.52-1-g0dae2db
|
2019-04-25 14:45:16 +02:00
|
|
|
|
|
|
|
############
|
|
|
|
# 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)
|
2021-01-05 12:25:49 +01:00
|
|
|
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"
|
2019-04-25 13:54:31 +02:00
|
|
|
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
|
|
|
|
|
2021-01-01 11:43:50 +01:00
|
|
|
printf "Running pre-push hook\n............................\n"
|
2019-04-18 21:02:06 +02:00
|
|
|
|
|
|
|
unset IFS; set -f
|
|
|
|
|
2019-04-25 13:54:31 +02:00
|
|
|
# note date of last push for version
|
|
|
|
touch "${LASTPUSH}"
|