From 1df22654371514bd39b385ee49c2a5000cd7937f Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 1 Jan 2022 02:35:32 -0600 Subject: [PATCH] Ensure we use -r in cp for recursion on allocs server fixes --- 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 bc02147..15f8602 100644 --- a/Scripts/7D2D-Manage.bash +++ b/Scripts/7D2D-Manage.bash @@ -464,7 +464,7 @@ install() { mkdir -p "${server_fixes_temp_dir}" wget http://illy.bz/fi/7dtd/server_fixes.tar.gz >/dev/null 2>&1 tar xf server_fixes.tar.gz -C "${server_fixes_temp_dir}" - cp "${server_fixes_temp_dir}/Mods/"* "${server_directory}/mods" + cp -r "${server_fixes_temp_dir}/Mods/"* "${server_directory}/mods" rm -rf "${server_fixes_temp_dir}" log "info" "Successfully installed $(important "${server_name}") to $(important "${server_directory}")" }