2019-04-18 18:38:20 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# this has to run once atfer git clone
|
|
|
|
# and every time we create new hooks
|
2021-01-05 16:17:34 +01:00
|
|
|
#### $$VERSION$$ v1.25-dev-14-g2fe6d4b
|
2019-04-18 18:38:20 +02:00
|
|
|
|
2019-04-18 18:42:42 +02:00
|
|
|
# magic to ensure that we're always inside the root of our application,
|
2019-04-18 18:38:20 +02:00
|
|
|
# no matter from which directory we'll run script
|
2019-05-11 12:07:06 +02:00
|
|
|
GIT_DIR=$(git rev-parse --git-dir 2>/dev/null)
|
2021-01-05 11:40:28 +01:00
|
|
|
if [ "${GIT_DIR}" != "" ] ; then
|
|
|
|
cd "${GIT_DIR}/.." || exit 1
|
2019-05-11 12:07:06 +02:00
|
|
|
else
|
2021-01-01 11:27:54 +01:00
|
|
|
printf "Sorry, no git repository %s\n" "$(pwd)" && exit 1
|
2019-05-11 12:07:06 +02:00
|
|
|
fi
|
2019-04-18 18:38:20 +02:00
|
|
|
|
2019-04-19 10:43:06 +02:00
|
|
|
HOOKDIR="dev/hooks"
|
|
|
|
|
2021-01-01 11:27:54 +01:00
|
|
|
printf "Installing hooks..."
|
2020-12-24 12:05:10 +01:00
|
|
|
for hook in pre-commit post-commit pre-push
|
2019-04-18 18:38:20 +02:00
|
|
|
do
|
2019-04-19 13:01:25 +02:00
|
|
|
rm -f "${GIT_DIR}/hooks/${hook}"
|
2019-04-19 10:43:06 +02:00
|
|
|
if [ -f "${HOOKDIR}/${hook}.sh" ]; then
|
2021-01-05 11:40:28 +01:00
|
|
|
printf "%s"" ${hook}"
|
2019-04-19 10:43:06 +02:00
|
|
|
ln -s "../../${HOOKDIR}/${hook}.sh" "${GIT_DIR}/hooks/${hook}"
|
2019-04-18 18:38:20 +02:00
|
|
|
fi
|
|
|
|
done
|
2021-01-01 11:27:54 +01:00
|
|
|
printf " Done!\n"
|