telegram-bot-bash/test/install-hooks.sh

21 lines
554 B
Bash
Raw Normal View History

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
2019-04-18 16:42:42 +00:00
#### $$VERSION$$ 0.70-dev-0-g209c4b3
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
GIT_DIR=$(git rev-parse --git-dir)
2019-04-18 16:42:42 +00:00
cd "$GIT_DIR/.." || exit 1
2019-04-18 16:38:20 +00:00
echo -n "Installing hooks..."
for hook in pre-commit pre-push
do
rm -f "$GIT_DIR/hooks/${hook}"
if [ -f "test/${hook}.sh" ]; then
echo -n " $hook"
ln -s "../../test/${hook}.sh" "$GIT_DIR/hooks/${hook}"
fi
done
echo " Done!"