Remove the depth argument while git cloning

The depth argument is incompatible with cloning a specific commit. This
change removes the argument.

Change-Id: If8a855407ca383d046615ae2a4b8992d2e4b34fd
This commit is contained in:
Ian Howell 2020-07-06 13:13:25 -05:00
parent 116eb2cc93
commit 188512c9ba
2 changed files with 0 additions and 2 deletions

View File

@ -5,7 +5,6 @@
repo: "{{ chart_dependency['url'] }}"
version: "{{ chart_dependency['sha'] | default('HEAD') }}"
refspec: "{{ chart_dependency['refspec'] | default('refs/heads/master') }}"
depth: 1
- name: ensure the parent's charts directory exists
file:

View File

@ -5,7 +5,6 @@
repo: "{{ chart['url'] }}"
version: "{{ chart['sha'] | default('HEAD') }}"
refspec: "{{ chart['refspec'] | default('refs/heads/master') }}"
depth: 1
- include_tasks: dependencies.yaml
loop: "{{ chart['dependencies'] | default([]) }}"