From ea33026196dce95e498b716053eb03c4d46d5140 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Sat, 23 Jan 2021 15:28:39 +0100 Subject: [PATCH] Fix finalize tasks in artefact mode --- tasks/finalize/artefact.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/finalize/artefact.yml b/tasks/finalize/artefact.yml index 476a8db..cbfbd9c 100644 --- a/tasks/finalize/artefact.yml +++ b/tasks/finalize/artefact.yml @@ -4,14 +4,14 @@ - block: - name: Move directories - command: mv /path/to/foo /path/to/bar + command: mv {{ item.src }} {{ item.dest }} with_items: - src: '{{ webRoot }}/files' - dest: '{{ tempDeployRoot }}' + dest: '{{ tempDeployRoot }}/' - src: '{{ webRoot }}/settings' - dest: '{{ tempDeployRoot }}' + dest: '{{ tempDeployRoot }}/' - src: '{{ webRoot }}/web/sites/default' - dest: '{{ tempDeployRoot }}/web/sites' + dest: '{{ tempDeployRoot }}/web/sites/' - src: '{{ webRoot }}' dest: '{{ webRoot }}-old' - src: '{{ tempDeployRoot }}' -- GitLab