From: Thibault Saunier Date: Fri, 19 Apr 2019 20:38:24 +0000 (-0400) Subject: git-update: Make sure to download all subproject before applying manifest X-Git-Tag: 1.19.3~481^2~211 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b46c29525f04077775e19ae1006f226c9e186eee;p=platform%2Fupstream%2Fgstreamer.git git-update: Make sure to download all subproject before applying manifest Otherwise we might be missing some subprojects update --- diff --git a/git-update b/git-update index ae90567..19f27ef 100755 --- a/git-update +++ b/git-update @@ -8,6 +8,7 @@ import sys from scripts.common import git from scripts.common import Colors from scripts.common import accept_command +from scripts.common import get_meson SCRIPTDIR = os.path.normpath(os.path.dirname(__file__)) @@ -143,6 +144,8 @@ if __name__ == "__main__": sys.stdin.close() if options.manifest: + meson = get_meson() + targets_s = subprocess.check_output(meson + ['subprojects', 'download']) repos_commits = manifest_get_commits(options.manifest) else: repos_commits = {}