From c0891101c17b35b641d082f67f4449d9105767c0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 25 Feb 2017 22:14:36 +0000 Subject: [PATCH] display fix --- lgsm/functions/mods_core.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 620bfa921..35ab904e4 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -346,7 +346,7 @@ fn_mod_compatible_test(){ fn_create_mods_dir(){ # Create lgsm data modsdir if [ ! -d "${modsdir}" ];then - echo "creating lgsm mods data directory ${modsdir}..." + echo -en "creating LinuxGSM mods data directory ${modsdir}..." mkdir -p "${modsdir}" exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -361,7 +361,7 @@ fn_create_mods_dir(){ fi # Create mod install directory if [ ! -d "${modinstalldir}" ]; then - echo "creating mods install directory ${modinstalldir}..." + echo -en "creating mods install directory ${modinstalldir}..." mkdir -p "${modinstalldir}" exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -438,7 +438,7 @@ fn_mods_check_installed(){ if [ ${installedmodscount} -eq 0 ]; then echo "" fn_print_failure_nl "No installed mods or addons were found" - echo " * Install mods using LGSM first with: ./${selfname} mods-install" + echo " * Install mods using LinuxGSM first with: ./${selfname} mods-install" fn_script_log_error "No installed mods or addons were found." core_exit.sh fi