From eb1cee61f7fe9896d69805503a2d00bdc7b78b2b Mon Sep 17 00:00:00 2001 From: Soarinferret Date: Thu, 31 Jul 2025 00:33:57 -0500 Subject: [PATCH] bash scripts dont use switch statements --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 deploy.sh diff --git a/deploy.sh b/deploy.sh old mode 100644 new mode 100755 index 0a5a8b5..8f19f3a --- a/deploy.sh +++ b/deploy.sh @@ -30,7 +30,7 @@ fi # get the system architecture ARCH=$(uname -m) -switch "$ARCH" in +case "$ARCH" in x86_64) ARCH="amd64" ;;