Merge "Make the task that remove the remote idempotent"

This commit is contained in:
Zuul 2018-03-19 04:30:45 +00:00 committed by Gerrit Code Review
commit 7b3158698d
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@
- skip_ansible_lint
- name: Remove origin from local git repos
command: "git remote rm origin"
# To be idempotent, remove origin only if it's found in the local list.
shell: "git remote -v | grep origin && git remote rm origin || true"
args:
chdir: "{{ ansible_user_dir }}/{{ item.src_dir}}"
with_items: "{{ zuul.projects.values() | list }}"