2016-09-20 07:00:40 +00:00
|
|
|
shellcheck:
|
|
|
|
ifeq ($(shell shellcheck > /dev/null 2>&1 ; echo $$?),127)
|
|
|
|
ifeq ($(shell uname),Darwin)
|
|
|
|
brew install shellcheck
|
|
|
|
else
|
|
|
|
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse'
|
|
|
|
sudo apt-get update -qq && sudo apt-get install -qq -y shellcheck
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ci-dependencies: shellcheck
|
|
|
|
|
|
|
|
lint:
|
|
|
|
@echo linting...
|
2016-09-20 07:31:19 +00:00
|
|
|
@$(QUIET) find ./ -maxdepth 2 -not -path '*/\.*' | xargs file | egrep "shell|bash" | awk '{ print $$1 }' | sed 's/://g' | xargs shellcheck -e SC2069
|
2016-09-20 07:00:40 +00:00
|
|
|
|
|
|
|
setup:
|
|
|
|
$(MAKE) ci-dependencies
|
|
|
|
|
|
|
|
test: setup lint
|