2019-07-11 10:17:02 +02:00
|
|
|
---
|
2019-05-08 13:51:56 +02:00
|
|
|
- name: Get bridge repo
|
|
|
|
git:
|
|
|
|
repo: "{{ bridge_repo }}"
|
|
|
|
dest: "{{ bridge_path }}"
|
2019-07-09 17:00:12 +02:00
|
|
|
force: no
|
|
|
|
update: no
|
2019-05-08 13:51:56 +02:00
|
|
|
version: "{{ bridge_repo_branch }}"
|
2019-07-26 10:14:25 +02:00
|
|
|
- name: Initialize submodules
|
|
|
|
shell: git submodule update --init
|
|
|
|
args:
|
|
|
|
chdir: "{{ bridge_path }}"
|