Browse Source

fn_script_log_fatal & message

pull/1138/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
2d86a97340
  1. 6
      lgsm/functions/command_start.sh

6
lgsm/functions/command_start.sh

@ -13,15 +13,15 @@ fn_check_is_in_tmux(){
if [ -n "${TMUX}" ];then if [ -n "${TMUX}" ];then
fn_print_fail_nl "Can't start a tmux session inside of a tmux session." fn_print_fail_nl "Can't start a tmux session inside of a tmux session."
fn_script_log_fatal "Can't start a tmux session inside of a tmux session." fn_script_log_fatal "Can't start a tmux session inside of a tmux session."
fn_print_information_nl "LGSM already runs the server inside of a tmux session." fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible."
core_exit.sh core_exit.sh
fi fi
} }
fn_check_is_in_screen(){ fn_check_is_in_screen(){
if [ "$TERM" = "screen" ];then if [ "$TERM" = "screen" ];then
fn_print_fail_nl "Can't start a tmux session inside of a screen session." fn_print_fail_nl "Can't start a tmux session inside of a screen session."
fn_script_log_fail "Can't start a tmux session inside of a screen session." fn_script_log_fatal "Can't start a tmux session inside of a screen session."
fn_print_information_nl "LGSM already runs the server inside of a tmux session." fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible."
core_exit.sh core_exit.sh
fi fi
} }

Loading…
Cancel
Save