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