From f5400482a6e8e736ef1ea089c7695cb0b3a7fc07 Mon Sep 17 00:00:00 2001 From: blotus Date: Sat, 15 Mar 2025 13:46:35 +0100 Subject: [PATCH] opensuse sets OSTYPE to linux (#3514) --- wizard.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wizard.sh b/wizard.sh index bb03af5a9..d9b8caf2f 100755 --- a/wizard.sh +++ b/wizard.sh @@ -142,7 +142,7 @@ detect_services () { fi; done; done; - if [[ ${OSTYPE} == "linux-gnu" ]] || [[ ${OSTYPE} == "linux-gnueabihf" ]]; then + if [[ ${OSTYPE} == "linux-gnu" ]] || [[ ${OSTYPE} == "linux-gnueabihf" ]] || [[ ${OSTYPE} == "linux" ]]; then DETECTED_SERVICES+=("linux") HMENU+=("linux" "on") else