From e78ad6e610e525f215d9e13ba9c76cbb4955f82e Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 26 Dec 2021 02:08:13 -0600 Subject: [PATCH] Highlight bad xml file --- Scripts/7D2D-Manage.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/7D2D-Manage.bash b/Scripts/7D2D-Manage.bash index 076ef19..977f273 100644 --- a/Scripts/7D2D-Manage.bash +++ b/Scripts/7D2D-Manage.bash @@ -261,7 +261,7 @@ start_server() { for xml_file in "${server_directory}"/*.xml; do log "info" "Linting $(important "${xml_file}")..." if ! xmllint "${xml_file}" > /dev/null; then - log "error" "Xml parsing error in ${xml_file}, resolve the error and attempt to start again" + log "error" "Xml parsing error in $(important "${xml_file}"), resolve the error and attempt to start again" return 1 fi done