Skip to content

Commit

Permalink
Explicitly specified shell name for shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
shyiko committed Jul 14, 2015
1 parent 506fd80 commit 25c241f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit 25c241f

Please sign in to comment.