Browse Source
feat: improve error message for unknown game server (#4218 )
The code changes modify the error message displayed when an unknown game server is entered. The new message now capitalizes the first letter of "unknown" and adds an exit status of 1 to terminate the script.
pull/4220/head
Daniel Gibbs
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
6 additions and
5 deletions
linuxgsm.sh
tests/tests_fctrserver.sh
tests/tests_jc2server.sh
tests/tests_mcserver.sh
tests/tests_ts3server.sh
@ -369,7 +369,8 @@ if [ "${shortname}" == "core" ]; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
fn_install_file
fn_install_file
else
else
echo -e "[ FAIL ] unknown game server"
echo -e "[ FAIL ] Unknown game server"
exit 1
fi
fi
else
else
fn_install_getopt
fn_install_getopt
@ -369,7 +369,7 @@ if [ "${shortname}" == "core" ]; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
fn_install_file
fn_install_file
else
else
echo -e "[ FAIL ] u nknown game server"
echo -e "[ FAIL ] U nknown game server"
fi
fi
else
else
fn_install_getopt
fn_install_getopt
@ -370,7 +370,7 @@ if [ "${shortname}" == "core" ]; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
fn_install_file
fn_install_file
else
else
echo -e "[ FAIL ] u nknown game server"
echo -e "[ FAIL ] U nknown game server"
fi
fi
else
else
fn_install_getopt
fn_install_getopt
@ -370,7 +370,7 @@ if [ "${shortname}" == "core" ]; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
fn_install_file
fn_install_file
else
else
echo -e "[ FAIL ] u nknown game server"
echo -e "[ FAIL ] U nknown game server"
fi
fi
else
else
fn_install_getopt
fn_install_getopt
@ -370,7 +370,7 @@ if [ "${shortname}" == "core" ]; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
if [ " ${ userinput } " = = " ${ gameservername } " ] || [ " ${ userinput } " = = " ${ gamename } " ] || [ " ${ userinput } " = = " ${ shortname } " ] ; then
fn_install_file
fn_install_file
else
else
echo -e "[ FAIL ] u nknown game server"
echo -e "[ FAIL ] U nknown game server"
fi
fi
else
else
fn_install_getopt
fn_install_getopt