From f9cc56594cdab840955202baade6717a6f8a0323 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 1 Jan 2022 16:35:06 -0600 Subject: [PATCH] Silence cp for unfound dirs --- 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 fb0ec4b..34ca988 100644 --- a/Scripts/7D2D-Manage.bash +++ b/Scripts/7D2D-Manage.bash @@ -540,7 +540,7 @@ backup_configs() { mkdir -p "${config_backup_directory}" for xml_file in "${server_directory}"/{"","Saves/"}*.xml; do - cp "${xml_file}" "${config_backup_directory}/" + cp "${xml_file}" "${config_backup_directory}/" 2>/dev/null done }