From 8f48818e018d4841e496d71dfcb8713ed0859f42 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 17 Jun 2018 17:31:08 +0100 Subject: [PATCH] corrected if --- lgsm/functions/info_distro.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index 9fe2547a3..aaff1aacc 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -21,7 +21,7 @@ if [ -f "/etc/os-release" ]; then distroname=$(grep PRETTY_NAME /etc/os-release | sed 's/PRETTY_NAME=//g' | tr -d '="') distroversion=$(grep VERSION_ID /etc/os-release | sed 's/VERSION_ID=//g' | sed 's/\"//g') distroid=$(grep ID /etc/os-release | grep -v _ID | grep -v ID_ | sed 's/ID=//g') -if [ -n "$(command -v lsb_release)" ]; then +elif [ -n "$(command -v lsb_release)" ]; then distroname="$(lsb_release -sd)" distroversion="$(lsb_release -sr)" distroid=$(lsb_release -sc)