docker-mysql-cron-backup/Makefile
Jan Wagner 658751a5e4 Adding Makefile for running tests via 'make test'
This can be used for local development and even for running at travis-ci.
2017-04-08 16:50:29 +02:00

25 lines
601 B
Makefile

# Makefile
all: test
test:
# Checking for syntax errors
set -e; for SCRIPT in *.sh; \
do \
sh -n $$SCRIPT; \
done
# Checking for bashisms (currently not failing, but only listing)
SCRIPT="$$(which checkbashisms)"; if [ -n "$$SCRIPT" ] && [ -x "$$SCRIPT" ]; \
then \
$$SCRIPT *.sh || true; \
else \
echo "WARNING: skipping bashism test - you need to install checkbashism."; \
fi
SCRIPT="$$(which shellcheck)"; if [ -n "$$SCRIPT" ] && [ -x "$$SCRIPT" ]; \
then \
$$SCRIPT *.sh || true; \
else \
echo "WARNING: skipping shellcheck test - you need to install shellcheck."; \
fi