From 95a6b74311649301550a662e1917511437d02c3a Mon Sep 17 00:00:00 2001 From: flyxyz123 Date: Wed, 28 Feb 2024 11:46:15 +0000 Subject: [PATCH] Add missing ;; inside `case ... esac` --- SC1074.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC1074.md b/SC1074.md index f9babcc..a7edfee 100644 --- a/SC1074.md +++ b/SC1074.md @@ -20,7 +20,7 @@ while getoptions f option do case "${options}" in - f) FTR="${ARG}" + f) FTR="${ARG}";; \?) exit;; esac done