mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-10-31 23:52:30 +00:00
24 lines
611 B
Bash
Executable File
24 lines
611 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#### $$VERSION$$ v1.25-dev-9-g14fa2c7
|
|
|
|
############
|
|
# 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
|
|
|
|
#printf "Running post-commit hook\n............................\n"
|
|
|
|
unset IFS; set -f
|
|
|
|
# note date of last push for version
|
|
touch "${LASTPUSH}"
|