Skip to content

Commit

Permalink
Corrected list of shellcheck exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
shyiko committed Oct 8, 2017
1 parent 410f24d commit 53e553c
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 -s bash -e SC2128 -e SC2178 -e SC2162 -f gcc commacd.bash
shellcheck -s bash -e SC2128,SC2162,SC2178 -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 53e553c

Please sign in to comment.