From b02eb1d5c5e8cfa96e5da1891afe7436c631c513 Mon Sep 17 00:00:00 2001 From: Xe Date: Mon, 1 Nov 2021 12:29:48 -0400 Subject: [PATCH] scripts/installer: handle fedora (#3235) We missed a switch case. Signed-off-by: Christine Dodrill --- scripts/installer.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/installer.sh b/scripts/installer.sh index 2e8335d87..1f3f845a6 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -250,6 +250,9 @@ main() { OS_UNSUPPORTED=1 fi ;; + fedora) + # All versions supported, no version checking required. + ;; arch) # Rolling release, no version checking needed. ;;