From: Loic Dachary Date: Fri, 6 Mar 2015 14:29:22 +0000 (+0100) Subject: tests: sync must also be recursive X-Git-Tag: v9.0.0~205^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=75abe378fcedfbce11d044dfdb2e0f1661d489f5;p=ceph.git tests: sync must also be recursive In case a submodule URL to a nested submodule changed Signed-off-by: Loic Dachary --- diff --git a/src/test/docker-test-helper.sh b/src/test/docker-test-helper.sh index 2726b8796d79..e7336c083581 100755 --- a/src/test/docker-test-helper.sh +++ b/src/test/docker-test-helper.sh @@ -95,7 +95,7 @@ function setup_downstream() { fi cd $downstream git reset --hard $ref || return 1 - git submodule sync || return 1 + git submodule sync --recursive || return 1 git submodule update --init --recursive || return 1 ) }