From 25c241f15d5eac3bbc343e7e91af1f43dbe0079f Mon Sep 17 00:00:00 2001 From: Stanley Shyiko Date: Tue, 14 Jul 2015 15:48:39 -0700 Subject: [PATCH] Explicitly specified shell name for shellcheck --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 0347c19..d86ab23 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ all: lint test lint: test -s `which shellcheck` || { echo "shellcheck (https://github.com/koalaman/shellcheck) wasn't found on the PATH. Please install it and try again."; exit 1; } - shellcheck -e SC2128 -f gcc commacd.bash + shellcheck -s bash -e SC2128 -f gcc commacd.bash test: test -s `which shpec` || { echo "shpec (https://github.com/rylnd/shpec) wasn't found on the PATH. Please install it and try again"; exit 1; }