Adding checkbashsms call to test target of the Makefile as suggested by Trent W. Buck <trentbuck@gmail.com>.
This commit is contained in:
parent
c8f66ebe90
commit
8f8a9ec521
9
Makefile
9
Makefile
|
@ -5,11 +5,20 @@ TRANSLATIONS="de"
|
|||
all: build
|
||||
|
||||
test:
|
||||
# Checking for syntax errors
|
||||
set -e; for SCRIPT in functions/* examples/*/*.sh helpers/* hooks/*; \
|
||||
do \
|
||||
sh -n $$SCRIPT; \
|
||||
done
|
||||
|
||||
# Checking for bashisms (temporary not failing, but only listing)
|
||||
if [ -x /usr/bin/checkbashisms ]; \
|
||||
then \
|
||||
checkbashisms functions/* examples/*/*.sh helpers/* hooks/* || true; \
|
||||
else \
|
||||
echo "bashism test skipped - you need to install devscripts."; \
|
||||
fi
|
||||
|
||||
build:
|
||||
@echo "Nothing to build."
|
||||
|
||||
|
|
Loading…
Reference in New Issue