Browse Source

fix(install): fix menu missing first server off list (#3196)

pull/3185/head^2
Daniel Gibbs 4 years ago
committed by GitHub
parent
commit
2816217027
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 0
      lgsm/functions/update_minecraft.sh
  2. 4
      linuxgsm.sh

0
lgsm/functions/update_minecraft.sh

4
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

Loading…
Cancel
Save