From b916920322ef36acad9f63236d218ca1dfa0eeda Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 18 Apr 2019 19:13:11 -0500 Subject: [PATCH] Fedora 29 support --- public/detect_linux.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/detect_linux.sh b/public/detect_linux.sh index 424f611..2944208 100644 --- a/public/detect_linux.sh +++ b/public/detect_linux.sh @@ -7,6 +7,11 @@ if [ -f /etc/os-release ]; then . /etc/os-release if [ "$ID" == "arch" ]; then DISTNAME=arch + elif [ "$ID" == "fedora" ]; then + if [ "$VERSION_ID" == "29" ]; then + DISTNAME=fedora + DISTVER=29 + fi fi fi