diff options
author | Lucid One <LucidOne@users.noreply.github.com> | 2018-03-07 11:09:52 -0500 |
---|---|---|
committer | Tad Fisher <tadfisher@gmail.com> | 2018-03-07 11:08:39 -0800 |
commit | 8c37628a5d50e1a01fd7c97ba0aa80a39c972638 (patch) | |
tree | 0075530c43549b08d7009f363500f241e5957744 | |
parent | 20232a9ecd5f4909f0965b3abc1f80a70671076e (diff) | |
download | pass-otp-8c37628a5d50e1a01fd7c97ba0aa80a39c972638.tar.gz pass-otp-8c37628a5d50e1a01fd7c97ba0aa80a39c972638.zip |
Enable `make lint` for test/setup.sh
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | test/Makefile | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -28,6 +28,7 @@ uninstall: lint: shellcheck -s bash $(PROG).bash + $(MAKE) -C test lint test: $(MAKE) -C test diff --git a/test/Makefile b/test/Makefile index deb6033..027feca 100644 --- a/test/Makefile +++ b/test/Makefile @@ -61,5 +61,8 @@ aggregate-results: echo "$$f"; \ done | '$(SHELL_PATH_SQ)' '$(AGGREGATE_SCRIPT)' -.PHONY: all test prove $(T) pre-clean clean +lint: + shellcheck -s bash setup.sh + +.PHONY: all test prove $(T) pre-clean clean lint .PHONY: aggregate-results-and-cleanup aggregate-results |