Skip to content
Snippets Groups Projects
Commit 3fb5a82d authored by Imran Iqbal's avatar Imran Iqbal
Browse files

ci(travis): quote pathspecs used with `git ls-files` [skip ci]

parent 0931835f
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ jobs: ...@@ -37,7 +37,7 @@ jobs:
script: script:
# Install and run `salt-lint` # Install and run `salt-lint`
- pip install --user salt-lint - pip install --user salt-lint
- git ls-files -- *.sls *.jinja *.j2 *.tmpl *.tst - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
| xargs salt-lint | xargs salt-lint
# Install and run `yamllint` # Install and run `yamllint`
# Need at least `v1.17.0` for the `yaml-files` setting # Need at least `v1.17.0` for the `yaml-files` setting
...@@ -48,7 +48,7 @@ jobs: ...@@ -48,7 +48,7 @@ jobs:
- rubocop -d - rubocop -d
# Run `shellcheck` (already pre-installed in Travis) # Run `shellcheck` (already pre-installed in Travis)
- shellcheck --version - shellcheck --version
- git ls-files -- *.sh *.bash *.ksh - git ls-files -- '*.sh' '*.bash' '*.ksh'
| xargs shellcheck | xargs shellcheck
# Install and run `commitlint` # Install and run `commitlint`
- npm i -D @commitlint/config-conventional - npm i -D @commitlint/config-conventional
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment