mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-15 20:47:08 +00:00
21 lines
479 B
Bash
Executable File
21 lines
479 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# this has to run once atfer git clone
|
|
# and every time we create new hooks
|
|
#### $$VERSION$$ v1.30-0-g3266427
|
|
|
|
#shellcheck disable=SC1090
|
|
source "${0%/*}/dev.inc.sh"
|
|
|
|
HOOKDIR="dev/hooks"
|
|
|
|
printf "Installing hooks..."
|
|
for hook in pre-commit post-commit pre-push
|
|
do
|
|
rm -f "${GIT_DIR}/hooks/${hook}"
|
|
if [ -f "${HOOKDIR}/${hook}.sh" ]; then
|
|
printf "%s"" ${hook}"
|
|
ln -s "../../${HOOKDIR}/${hook}.sh" "${GIT_DIR}/hooks/${hook}"
|
|
fi
|
|
done
|
|
printf " Done!\n"
|