Browse Source

Fixed wrong text in some core messages

pull/1952/head
UltimateByte 7 years ago
committed by GitHub
parent
commit
1ca82a410e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      lgsm/functions/core_messages.sh

8
lgsm/functions/core_messages.sh

@ -315,20 +315,20 @@ fn_print_fail_eol_nl(){
# WARN # WARN
fn_print_warn_eol(){ fn_print_warn_eol(){
echo -en "${red}FAIL${default}" echo -en "${red}WARNING${default}"
} }
fn_print_warn_eol_nl(){ fn_print_warn_eol_nl(){
echo -e "${red}FAIL${default}" echo -e "${red}WARNING${default}"
} }
# INFO # INFO
fn_print_info_eol(){ fn_print_info_eol(){
echo -en "${red}FAIL${default}" echo -en "${red}INFO${default}"
} }
fn_print_info_eol_nl(){ fn_print_info_eol_nl(){
echo -e "${red}FAIL${default}" echo -e "${red}INFO${default}"
} }
# QUERYING # QUERYING

Loading…
Cancel
Save