2020-12-24 11:05:10 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-01-05 11:25:49 +00:00
|
|
|
#### $$VERSION$$ v1.25-dev-9-g14fa2c7
|
2020-12-24 11:05:10 +00:00
|
|
|
|
|
|
|
############
|
|
|
|
# NOTE: you MUST run install-hooks.sh again when updating this file!
|
|
|
|
|
|
|
|
# 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 11:25:49 +00:00
|
|
|
cd "${GIT_DIR}/.." || exit 1
|
2020-12-24 11:05:10 +00:00
|
|
|
|
|
|
|
export HOOKDIR="dev/hooks"
|
|
|
|
LASTPUSH='.git/.lastcommit'
|
|
|
|
|
|
|
|
# if any command inside script returns error, exit and return that error
|
|
|
|
set -e
|
|
|
|
|
2021-01-01 10:43:50 +00:00
|
|
|
#printf "Running post-commit hook\n............................\n"
|
2020-12-24 11:05:10 +00:00
|
|
|
|
|
|
|
unset IFS; set -f
|
|
|
|
|
|
|
|
# note date of last push for version
|
|
|
|
touch "${LASTPUSH}"
|