From f03ca47732e1fa575b2210ccce9a7129156c05db Mon Sep 17 00:00:00 2001 From: Ezequiel Valencia Date: Thu, 9 Jan 2025 08:58:01 -0500 Subject: [PATCH] Sync Without Attempting To Keep Origins Permissions --- .github/workflows/webhelp-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/webhelp-deploy.yml b/.github/workflows/webhelp-deploy.yml index 9300bb8711..231220725d 100644 --- a/.github/workflows/webhelp-deploy.yml +++ b/.github/workflows/webhelp-deploy.yml @@ -44,7 +44,7 @@ jobs: echo "Error: VCELL_WEBHELP_REMOTE_DIR or manager_node is not set." exit 1; fi - if ! rsync -a "${webhelp_local_dir}/topics" "$ssh_user@$manager_node:${webhelp_deploy_dir}"; + if ! rsync -r "${webhelp_local_dir}/topics" "$ssh_user@$manager_node:${webhelp_deploy_dir}"; then echo "failed to copy html files in topic directory to webhelp deploy directory"; exit 1;