From 2145b4be329288ad5daa9e2fa69e499bfa41b97b Mon Sep 17 00:00:00 2001 From: Davide Depau Date: Sun, 19 Apr 2020 00:00:37 +0200 Subject: [PATCH] Pull submodules manually --- .drone.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 80605f0..66bdac3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,11 @@ steps: image: alpine/git commands: - git submodule update --recursive - - git pull origin master --recurse-submodules=yes + - cat .gitmodules | grep 'path =' | while read -r path; do + - cd "$path" + - git pull origin master + - cd - + - done - name: deploy image: drillster/drone-rsync