From 3952faba85bb091cd8a0e6924b3cbd92f17499a3 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Thu, 28 May 2020 15:27:14 -0400 Subject: [PATCH] Add missing semi-colons to break out of the case block --- setup/so-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/so-setup b/setup/so-setup index 24079bb94..566767e82 100755 --- a/setup/so-setup +++ b/setup/so-setup @@ -38,7 +38,7 @@ while [[ $# -gt 0 ]]; do "--allow-cidr="* ) export ALLOW_CIDR="${arg#*=}";; "--skip-reboot" ) - export SKIP_REBOOT=1 + export SKIP_REBOOT=1;; * ) if [[ "$arg" == "--"* ]]; then echo "Invalid option"