Make the task that remove the remote idempotent
The current implementation of the task is not idempotent. That's fine in CI but when running locally it forces a cleanup of the environment every time. Change-Id: Ifdb573bc09ddb2d39674218e9f631e8c15f936cb
This commit is contained in:
parent
ab137633d3
commit
cf1ae5235b
@ -31,7 +31,8 @@
|
|||||||
- skip_ansible_lint
|
- skip_ansible_lint
|
||||||
|
|
||||||
- name: Remove origin from local git repos
|
- 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:
|
args:
|
||||||
chdir: "{{ ansible_user_dir }}/{{ item.src_dir}}"
|
chdir: "{{ ansible_user_dir }}/{{ item.src_dir}}"
|
||||||
with_items: "{{ zuul.projects.values() | list }}"
|
with_items: "{{ zuul.projects.values() | list }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user