Fix errant whitespace and stylise .sh as literal text

John Gardner
2021-12-22 15:48:40 +11:00
parent 3f78e63e5e
commit ba4037b445

@@ -1,4 +1,4 @@
For a basic configuration, place the following in your ` .drone.yml`: For a basic configuration, place the following in your `.drone.yml`:
```yaml ```yaml
--- ---
@@ -13,7 +13,7 @@ steps:
- "shellcheck testScript.sh" - "shellcheck testScript.sh"
``` ```
To check all .sh files in the repo: To check all `.sh` files in the repo:
```yaml ```yaml
steps: steps:
@@ -21,4 +21,4 @@ steps:
image: koalaman/shellcheck-alpine:stable image: koalaman/shellcheck-alpine:stable
commands: commands:
- "find . -name *.sh -exec shellcheck {} +" - "find . -name *.sh -exec shellcheck {} +"
``` ```