From ba4037b445eadb9b7eb04c19fa93ce47eec1e0dc Mon Sep 17 00:00:00 2001 From: John Gardner Date: Wed, 22 Dec 2021 15:48:40 +1100 Subject: [PATCH] Fix errant whitespace and stylise `.sh` as literal text --- Drone.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Drone.md b/Drone.md index 16115db..0a13a5d 100644 --- a/Drone.md +++ b/Drone.md @@ -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 --- @@ -13,7 +13,7 @@ steps: - "shellcheck testScript.sh" ``` -To check all .sh files in the repo: +To check all `.sh` files in the repo: ```yaml steps: @@ -21,4 +21,4 @@ steps: image: koalaman/shellcheck-alpine:stable commands: - "find . -name *.sh -exec shellcheck {} +" -``` \ No newline at end of file +```