Add nullglob to avoid error when there are no specific scripts

Anatoli Babenia
2019-08-18 13:41:22 +03:00
parent 7f319862af
commit 4bdb1bc40c

@@ -5,7 +5,7 @@ For a truly simple configuration, place the following in your `.travis.yml`:
```yaml
language: shell
script:
- bash -c 'shopt -s globstar; shellcheck **/*.{sh,ksh,bash}'
- bash -c 'shopt -s globstar nullglob; shellcheck **/*.{sh,ksh,bash}'
```
Note: