tests: only run hooks/pre-commit if its present (not in source tarball)

This commit is contained in:
Hans-Christoph Steiner 2019-07-03 19:39:52 +02:00
parent 9e32e2d770
commit 4ddd840471

View file

@ -128,7 +128,7 @@ set -x # show each command as it is executed
echo_header "run commit hooks"
cd $WORKSPACE
./hooks/pre-commit
test -x ./hooks/pre-commit && ./hooks/pre-commit
#------------------------------------------------------------------------------#