Remove trailing comma... this is bash

This commit is contained in:
Price Hiller 2022-01-01 03:02:09 -06:00
parent bbfe8027c4
commit 398ec8450f

View File

@ -269,7 +269,7 @@ start_server() {
# xmllint, helps avoiding the random server launch failures for apparently no reason
local lint_dirs
lint_dirs=("${server_directory}"/*.xml, "${server_directory}/Saves/"*.xml)
lint_dirs=("${server_directory}"/*.xml "${server_directory}/Saves/"*.xml)
if which xmllint >/dev/null 2>&1; then
for xml_file in "${lint_dirs[@]}"; do
log "info" "Linting $(important "${xml_file}")"