telegram-bot-bash/dev/hooks/post-commit.sh
Kay Marquardt (Gnadelwartz) f4d64f7b0c add post-commit hook
2020-12-24 12:05:10 +01:00

25 lines
614 B
Bash
Executable File

#!/usr/bin/env bash
#### $$VERSION$$ v1.2-dev2-63-g69ca15a
############
# 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)
cd "$GIT_DIR/.." || exit 1
export HOOKDIR="dev/hooks"
LASTPUSH='.git/.lastcommit'
# if any command inside script returns error, exit and return that error
set -e
#echo "Running post-commit hook"
#echo "............................"
unset IFS; set -f
# note date of last push for version
touch "${LASTPUSH}"