telegram-bot-bash/hooks/pre-commit.sh

29 lines
669 B
Bash
Raw Normal View History

2019-04-18 16:38:20 +00:00
#!/usr/bin/env bash
2019-04-18 16:42:42 +00:00
#### $$VERSION$$ 0.70-dev-0-g209c4b3
# 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
2019-04-18 16:38:20 +00:00
echo "Running pre-commit hook"
# if any command inside script returns error, exit and return that error
set -e
# let's fake failing test for now
echo "Running tests"
echo "............................"
unset IFS; set -f
# run shellcheck before commit
2019-04-18 19:02:06 +00:00
FILES=$(sed '/^#/d' <"hooks/shellcheck.files")
2019-04-18 16:38:20 +00:00
if [ "$FILES" != "" ]; then
# shellcheck disable=SC2086
shellcheck -x ${FILES}
else
# something went wrong
exit 1
fi