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