Git submodule update after fetching patch 59/8859/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 14 Feb 2018 21:13:11 +0000 (16:13 -0500)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 14 Feb 2018 21:14:07 +0000 (16:14 -0500)
For projects that have submodules we need to call
`git submodule update` after fetching the patch so that
submodule updates caused by the patch are pulled in.

Running that command on a repo that does not contain submodules
returns cleanly as a noop.

Change-Id: Iec76e4c42d9e0132571af477f3ae770e5e360781
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
shell/rtd-verify.sh

index 2074eca..bddc23b 100644 (file)
@@ -20,6 +20,7 @@ if [ "$GERRIT_PROJECT" != "$PROJECT" ]; then
 fi
 
 git fetch origin "$GERRIT_REFSPEC" && git checkout FETCH_HEAD
+git submodule update
 
 echo "---> Generating docs"
 cd "$WORKSPACE"