From cfe8b3090dc611dda9861fa08f5420721fd15ecf Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 29 Sep 2023 10:24:43 +0100 Subject: [PATCH] fix: update warning message for missing SteamCMD The commit updates the warning message in the code to indicate that SteamCMD is not installed instead of being missing. Additionally, it modifies the log message accordingly. --- lgsm/modules/core_steamcmd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/modules/core_steamcmd.sh b/lgsm/modules/core_steamcmd.sh index 6ef98d3d6..9d94da109 100644 --- a/lgsm/modules/core_steamcmd.sh +++ b/lgsm/modules/core_steamcmd.sh @@ -46,12 +46,12 @@ fn_check_steamcmd() { if [ "${commandname}" == "INSTALL" ]; then fn_install_steamcmd else - fn_print_warn_nl "SteamCMD is missing" - fn_script_log_warn "SteamCMD is missing" + fn_print_warn_nl "SteamCMD is not installed" + fn_script_log_warn "SteamCMD is not installed" fn_install_steamcmd fi elif [ "${commandname}" == "INSTALL" ]; then - echo -e "SteamCMD is already installed" + echo -en "SteamCMD is already installed" fn_print_skip_eol_nl fi }