project-config/roles/copy-release-tools-scripts/tasks/main.yaml
Andreas Jaeger 88b52ff134 Fix rsync invocation
Add extra "/" so that files are copied into the destination, not as a
directory in it.

Change-Id: If0fe37f7b405fcdff73331baabe9241a50b3a5b7
2018-03-06 09:24:28 +01:00

10 lines
268 B
YAML

- name: Create ~/scripts/ directory
file:
path: "{{ ansible_user_dir }}/scripts/"
state: directory
- name: Copy the release-tools directory to the remote node
synchronize:
src: "release-tools/"
dest: "{{ ansible_user_dir }}/scripts/release-tools"