From c80dd10ad13fed3de04397da1288a6bf8b6758ae Mon Sep 17 00:00:00 2001 From: siho22 Date: Mon, 18 Jan 2021 15:51:13 +0100 Subject: [PATCH] The example should exit if the command succeeds. The "Correct code" didn't do that. --- SC2251.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2251.md b/SC2251.md index 725719c..24b2434 100644 --- a/SC2251.md +++ b/SC2251.md @@ -11,7 +11,7 @@ set -e ```sh set -e -! false && exit 1 +false && exit 1 ``` ### Rationale: