diff options
-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 |