Browse Source

travis: disable "Prefer explicit escaping" shellcheck warning

People are used to using single backslash in grep (grep "\(xxx\)" etc)
and similar context, lets not make it confusing everywhere.
Marek Marczykowski-Górecki 5 years ago
parent
commit
b026524ec4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -21,7 +21,7 @@ jobs:
       env: TESTS_ONLY=1
       script:
        - ./run-tests
-       - shellcheck  $(grep -l '^#!/bin/\(ba\)\?sh' $(git ls-files))
+       - shellcheck -e SC1117 $(grep -l '^#!/bin/\(ba\)\?sh' $(git ls-files))
       after_success:
        - codecov
     - stage: deploy