From 989c1c142f1846ade9bf748b615ad7c8f14d2c89 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Dec 2018 15:02:53 +0000 Subject: [PATCH] fix(check): correct if on line 434 --- lgsm/functions/check_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 87138fea7..09a13cdad 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -431,7 +431,7 @@ fn_deps_build_redhat(){ ## CentOS 6 if [ "${distroversion}" == "6" ]; then array_deps_required=( epel-release curl wget util-linux-ng python file gzip bzip2 unzip binutils bc jq ) - if [ "${distroversion}" == "7" ]; then + elif [ "${distroversion}" == "7" ]; then array_deps_required=( epel-release curl wget util-linux python file gzip bzip2 unzip binutils bc jq ) elif [ "${distroid}" == "fedora" ]; then array_deps_required=( curl wget util-linux python2 file gzip bzip2 unzip binutils bc jq )