diff options
author | Dario Ernst | 2018-01-27 22:35:21 +0100 |
---|---|---|
committer | Dario Ernst | 2018-01-29 19:49:04 +0100 |
commit | 31f1db4100d639933595fe2cc7c538bef1f48f3d (patch) | |
tree | e00ef00b87813db2a91faaa74abed79d342e4b6b | |
parent | 9e0359e079404f9f661ad259e599ce5aa256b6ed (diff) |
Make travis run shellcheck only on shellscripts
There are only a few scripts in bin/, but not all might be shell. At
least for the moment, it seems reasonable to explicitely enumerate all
shell-scripts in bin/ for shellcheck …
Signed-off-by: Dario Ernst <dario@kanojo.de>
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index ee936e57..c23ebcea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ jobs: - export PATH="$HOME/.yarn/bin:$PATH" - env: task=ShellCheck script: - - shellcheck bin/* + - shellcheck bin/heroku bin/setup language: generic - env: task=doctoc install: npm install doctoc |