From: Daniel Martí Date: Fri, 9 Jan 2015 15:08:27 +0000 (+0100) Subject: pre-commit: differentiate sh and bash files X-Git-Tag: 0.4.0~162 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=e830b255614cc85f2d4abba32429190c03ec4d84;p=fdroidserver.git pre-commit: differentiate sh and bash files --- diff --git a/hooks/pre-commit b/hooks/pre-commit index 63e3fbb9..0d392efc 100755 --- a/hooks/pre-commit +++ b/hooks/pre-commit @@ -7,7 +7,8 @@ exec 1>&2 PY_FILES="fdroid makebuildserver setup.py examples/*.py buildserver/*.py fdroidserver/*.py" -SH_FILES="fd-commit jenkins-build docs/*.sh hooks/pre-commit" +SH_FILES="hooks/pre-commit" +BASH_FILES="fd-commit jenkins-build docs/update.sh" RB_FILES="buildserver/cookbooks/*/recipes/*.rb" err() { @@ -19,8 +20,6 @@ cmd_exists() { command -v $1 1>/dev/null } -# For systems that switched to python3, first check for the python2 versions - if cmd_exists pyflakes-python2; then PYFLAKES=pyflakes-python2 elif cmd_exists pyflakes; then @@ -37,8 +36,6 @@ else err "pep8 is not installed!" fi -# If there are python errors or warnings, print them and fail. - if ! $PYFLAKES $PY_FILES; then err "pyflakes tests failed!" fi @@ -48,16 +45,18 @@ if ! $PEP8 --ignore=E123,E501 $PY_FILES; then fi -# check the syntax of included shell scripts with bash -n - for f in $SH_FILES; do + if ! dash -n $f; then + err "dash tests failed!" + fi +done + +for f in $BASH_FILES; do if ! bash -n $f; then err "bash tests failed!" fi done -# check the syntax of included ruby scripts with ruby -c - for f in $RB_FILES; do if ! ruby -c $f 1>/dev/null; then err "ruby tests failed!"