Skip to content
Snippets Groups Projects

Resolve "Improve script checking"

Merged Jon Azpiazu requested to merge 26-improve-script-checking into master
2 files
+ 4
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -113,8 +113,8 @@ bash_syntax:
stage: postcheck
script:
- RET=0
- find . -type f -name '*.sh' -exec shellcheck -s sh {} \;
- find . -type f -name '*.bash' -exec shellcheck -s bash {} \;
- find . -type f -name '*.sh' -exec shellcheck -s sh {} + || RET=1
- find . -type f -name '*.bash' -exec shellcheck -s bash {} + || RET=1
- exit $RET
when: always
tags:
Loading