Browse Source

updated core_install.sh

pull/584/head
Daniel Gibbs 9 years ago
parent
commit
a063b44313
  1. 6
      functions/core_functions.sh
  2. 12
      functions/core_getopt.sh
  3. 2
      functions/install_retry.sh

6
functions/core_functions.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
# LGSM fn_functions function # LGSM core_functions.sh function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://gameservermanagers.com # Website: http://gameservermanagers.com
lgsm_version="261215" lgsm_version="261215"
@ -206,10 +206,10 @@ fn_runfunction
fn_autoinstall(){ fn_autoinstall(){
autoinstall=1 autoinstall=1
fn_install command_install.sh(
} }
fn_install(){ command_install.sh(){
functionfile="${FUNCNAME}" functionfile="${FUNCNAME}"
fn_runfunction fn_runfunction
} }

12
functions/core_getopt.sh

@ -38,7 +38,7 @@ case "$getopt" in
dev|dev-debug) dev|dev-debug)
dev_debug.sh;; dev_debug.sh;;
i|install) i|install)
fn_install;; command_install.sh;;
ai|auto-install) ai|auto-install)
fn_autoinstall;; fn_autoinstall;;
dd|depsdetect) dd|depsdetect)
@ -93,7 +93,7 @@ case "$getopt" in
dev|dev-debug) dev|dev-debug)
dev_debug.sh;; dev_debug.sh;;
i|install) i|install)
fn_install;; command_install.sh;;
ai|auto-install) ai|auto-install)
fn_autoinstall;; fn_autoinstall;;
dd|depsdetect) dd|depsdetect)
@ -198,7 +198,7 @@ case "$getopt" in
dev|dev-debug) dev|dev-debug)
dev_debug.sh;; dev_debug.sh;;
i|install) i|install)
fn_install;; command_install.sh;;
ai|auto-install) ai|auto-install)
fn_autoinstall;; fn_autoinstall;;
dd|depsdetect) dd|depsdetect)
@ -258,7 +258,7 @@ case "$getopt" in
dev|dev-debug) dev|dev-debug)
dev_debug.sh;; dev_debug.sh;;
i|install) i|install)
fn_install;; command_install.sh;;
mc|map-compressor) mc|map-compressor)
compress_ut99_maps.sh;; compress_ut99_maps.sh;;
dd|depsdetect) dd|depsdetect)
@ -320,7 +320,7 @@ case "$getopt" in
dev|dev-debug) dev|dev-debug)
dev_debug.sh;; dev_debug.sh;;
i|install) i|install)
fn_install;; command_install.sh;;
ai|auto-install) ai|auto-install)
fn_autoinstall;; fn_autoinstall;;
dd|depsdetect) dd|depsdetect)
@ -381,7 +381,7 @@ case "$getopt" in
dev|dev-debug) dev|dev-debug)
dev_debug.sh;; dev_debug.sh;;
i|install) i|install)
fn_install;; command_install.sh;;
mc|map-compressor) mc|map-compressor)
compress_ut99_maps.sh;; compress_ut99_maps.sh;;
dd|depsdetect) dd|depsdetect)

2
functions/install_retry.sh

@ -7,7 +7,7 @@ lgsm_version="061115"
while true; do while true; do
read -e -i "y" -p "Retry install? [Y/n]" yn read -e -i "y" -p "Retry install? [Y/n]" yn
case $yn in case $yn in
[Yy]* ) fn_install; exit;; [Yy]* ) command_install.sh; exit;;
[Nn]* ) echo Exiting; exit;; [Nn]* ) echo Exiting; exit;;
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac

Loading…
Cancel
Save