telegram-bot-bash/dev/hooks/pre-push.sh
Kay Marquardt (Gnadelwartz) 163635da75 minor test
2019-04-25 14:02:11 +02:00

22 lines
525 B
Bash
Executable File

#!/usr/bin/env bash
#### $$VERSION$$ v0.70-dev2-25-gd55d311
# 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/.lastpush'
# if any command inside script returns error, exit and return that error
set -e
echo "Running pre-push hook"
echo "............................"
unset IFS; set -f
# note date of last push for version
touch "${LASTPUSH}"