fix(git_config): ensure cloned ansible-roles has submodules init #35

Merged
jon_nfc merged 1 commits from fix-roles-git-submodules-not-included into development 2023-05-26 05:45:49 +00:00

View File

@ -13,7 +13,10 @@ RUN apt update \
git || true
RUN git clone -b development --depth 1 https://gitlab.com/nofusscomputing/projects/ansible-roles.git /tmp/ansible-roles
RUN git clone -b development --depth 1 https://gitlab.com/nofusscomputing/projects/ansible-roles.git /tmp/ansible-roles \
&& cd /tmp/ansible-roles \
&& git submodule init