Skip to content

Commit

Permalink
ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Sep 29, 2023
1 parent 06b570b commit 23fa292
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lgsm/modules/core_steamcmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ fn_check_steamcmd() {
fn_install_steamcmd
fi
elif [ "${commandname}" == "INSTALL" ]; then
fn_print_information "SteamCMD is already installed..."
fn_print_ok_eol_nl
echo -e "SteamCMD is already installed"
fn_print_skip_eol_nl
fi
}

Expand Down
5 changes: 3 additions & 2 deletions lgsm/modules/install_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_check_cfgdir() {
changes=""
if [ "${shortname}" == "dst" ]; then
echo -en "creating config directory [ ${italic}${clustercfgfullpath}${default} ]"
echo -en "creating config directory [ ${italic}${clustercfgdir}${default} ]"
changes+=$(mkdir -pv "${clustercfgfullpath}")
elif [ "${shortname}" == "arma3" ]; then
echo -en "creating config directory [ ${italic}${networkcfgfullpath}${default} ]"
echo -en "creating config directory [ ${italic}${networkcfgdir}${default} ]"
changes+=$(mkdir -pv "${networkcfgfullpath}")
else
echo -en "creating config directory [ ${italic}${servercfgdir}${default} ]"
Expand All @@ -30,6 +30,7 @@ fn_check_cfgdir() {
else
fn_print_skip_eol_nl
fi
unset changes
}

# Copys default configs from Game-Server-Configs repo to server config location.
Expand Down
1 change: 1 addition & 0 deletions lgsm/modules/install_stats.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ if [ -z "${autoinstall}" ]; then
fn_print_information_nl "Stats setting is now enabled in common.cfg."
fi
else
echo -e ""
echo -e "auto-install leaves stats off by default. Stats can be enabled in common.cfg"
fi

0 comments on commit 23fa292

Please sign in to comment.