From 983d46ea066ca8d6044d2e5d9aac20ec84bbcc9f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 16 Jun 2018 19:15:42 +0100 Subject: [PATCH] Corrected SteamCMD GLIBC check --- lgsm/functions/info_glibc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 95da8ab5e..6d2ca4f20 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -203,9 +203,9 @@ else glibcfix="no" fi -# Sets the SteamCMD GLIBC requirement if server requirement is less. +# Sets the SteamCMD GLIBC requirement if the game server requirement is less or not required. if [ -n "${appid}" ]; then - if [ "${glibcrequired}" = "NOT REQUIRED" ]||[ "${glibcrequired}" < "2.14" ]||[ -z "${glibcrequired}" ] ; then + if [ "${glibcrequired}" = "NOT REQUIRED" ]||[ -z "${glibcrequired}" ]||[ "$(printf '%s\n'${glibcrequired}'\n' "${glibcversion}" | sort -V | head -n 1)" != "2.14" ]; then glibcrequired="2.14" glibcfix="no" fi