Browse Source

feat: improve server configuration parsing (#4242)

This commit improves the way server configurations are parsed by using xmllint to extract values from XML files. The eval function is also used to assign the extracted value to a variable.
pull/4245/head
Daniel Gibbs 2 years ago
committed by GitHub
parent
commit
5915545f93
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/modules/info_game.sh

2
lgsm/modules/info_game.sh

@ -131,7 +131,7 @@ fn_info_game_xml() {
else
servercfgparse="${servercfgfullpath}"
fi
eval "${1}"="$(xmllint --xpath "string(${2})" "${servercfgparse}")"
eval "${1}=\"$(xmllint --xpath "string(${2})" "${servercfgparse}")\""
configtype="xml"
}

Loading…
Cancel
Save