From a063b44313e79e85dcff1f7eb11b15513f8285a3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 26 Dec 2015 20:33:08 +0000 Subject: [PATCH] updated core_install.sh --- functions/core_functions.sh | 6 +++--- functions/core_getopt.sh | 12 ++++++------ functions/install_retry.sh | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/functions/core_functions.sh b/functions/core_functions.sh index 1773c775f..07c9a636c 100644 --- a/functions/core_functions.sh +++ b/functions/core_functions.sh @@ -1,5 +1,5 @@ #!/bin/bash -# LGSM fn_functions function +# LGSM core_functions.sh function # Author: Daniel Gibbs # Website: http://gameservermanagers.com lgsm_version="261215" @@ -206,10 +206,10 @@ fn_runfunction fn_autoinstall(){ autoinstall=1 -fn_install +command_install.sh( } -fn_install(){ +command_install.sh(){ functionfile="${FUNCNAME}" fn_runfunction } diff --git a/functions/core_getopt.sh b/functions/core_getopt.sh index 454871c5b..6574a34a1 100644 --- a/functions/core_getopt.sh +++ b/functions/core_getopt.sh @@ -38,7 +38,7 @@ case "$getopt" in dev|dev-debug) dev_debug.sh;; i|install) - fn_install;; + command_install.sh;; ai|auto-install) fn_autoinstall;; dd|depsdetect) @@ -93,7 +93,7 @@ case "$getopt" in dev|dev-debug) dev_debug.sh;; i|install) - fn_install;; + command_install.sh;; ai|auto-install) fn_autoinstall;; dd|depsdetect) @@ -198,7 +198,7 @@ case "$getopt" in dev|dev-debug) dev_debug.sh;; i|install) - fn_install;; + command_install.sh;; ai|auto-install) fn_autoinstall;; dd|depsdetect) @@ -258,7 +258,7 @@ case "$getopt" in dev|dev-debug) dev_debug.sh;; i|install) - fn_install;; + command_install.sh;; mc|map-compressor) compress_ut99_maps.sh;; dd|depsdetect) @@ -320,7 +320,7 @@ case "$getopt" in dev|dev-debug) dev_debug.sh;; i|install) - fn_install;; + command_install.sh;; ai|auto-install) fn_autoinstall;; dd|depsdetect) @@ -381,7 +381,7 @@ case "$getopt" in dev|dev-debug) dev_debug.sh;; i|install) - fn_install;; + command_install.sh;; mc|map-compressor) compress_ut99_maps.sh;; dd|depsdetect) diff --git a/functions/install_retry.sh b/functions/install_retry.sh index 8405f7393..ec5adde2d 100644 --- a/functions/install_retry.sh +++ b/functions/install_retry.sh @@ -7,7 +7,7 @@ lgsm_version="061115" while true; do read -e -i "y" -p "Retry install? [Y/n]" yn case $yn in - [Yy]* ) fn_install; exit;; + [Yy]* ) command_install.sh; exit;; [Nn]* ) echo Exiting; exit;; * ) echo "Please answer yes or no.";; esac