Use \0 terminator in GitLab CI config

John Meyer
2021-01-08 09:17:44 -05:00
parent a7042ca438
commit db4c866fd4

@@ -18,5 +18,5 @@ test:
- apk update - apk update
- apk add git - apk add git
script: script:
- git ls-files --exclude='*.sh' --ignored | xargs shellcheck - git ls-files --exclude='*.sh' --ignored -z | xargs -0 shellcheck
``` ```