diff --git a/Drone.md b/Drone.md index 4218660..16115db 100644 --- a/Drone.md +++ b/Drone.md @@ -11,4 +11,14 @@ steps: image: koalaman/shellcheck-alpine:stable commands: - "shellcheck testScript.sh" +``` + +To check all .sh files in the repo: + +```yaml +steps: + - name: shellcheck + image: koalaman/shellcheck-alpine:stable + commands: + - "find . -name *.sh -exec shellcheck {} +" ``` \ No newline at end of file