Browse Source
fix(install): fix menu missing first server off list (#3196)
pull/3185/head^2
Daniel Gibbs
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
lgsm/functions/update_minecraft.sh
-
linuxgsm.sh
|
|
@ -338,11 +338,11 @@ if [ "${shortname}" == "core" ]; then |
|
|
|
|
|
|
|
if [ "${userinput}" == "list" ]||[ "${userinput}" == "l" ]; then |
|
|
|
{ |
|
|
|
tail -n +2 "${serverlist}" | awk -F "," '{print $2 "\t" $3}' |
|
|
|
tail -n +1 "${serverlist}" | awk -F "," '{print $2 "\t" $3}' |
|
|
|
} | column -s $'\t' -t | more |
|
|
|
exit |
|
|
|
elif [ "${userinput}" == "install" ]||[ "${userinput}" == "i" ]; then |
|
|
|
tail -n +2 "${serverlist}" | awk -F "," '{print $1 "," $2 "," $3}' > "${serverlistmenu}" |
|
|
|
tail -n +1 "${serverlist}" | awk -F "," '{print $1 "," $2 "," $3}' > "${serverlistmenu}" |
|
|
|
fn_install_menu result "LinuxGSM" "Select game server to install." "${serverlistmenu}" |
|
|
|
userinput="${result}" |
|
|
|
fn_server_info |
|
|
|