Update automate-git.py to explicitly fetch tags required for release branch builds.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1791 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
34ad23fa0b
commit
9dfcf5c443
|
@ -813,6 +813,8 @@ if chromium_checkout_changed:
|
||||||
|
|
||||||
# Fetch new sources.
|
# Fetch new sources.
|
||||||
run("%s fetch" % (git_exe), chromium_src_dir, depot_tools_dir)
|
run("%s fetch" % (git_exe), chromium_src_dir, depot_tools_dir)
|
||||||
|
# Also fetch tags, which are required for release branch builds.
|
||||||
|
run("%s fetch --tags" % (git_exe), chromium_src_dir, depot_tools_dir)
|
||||||
|
|
||||||
# Checkout the requested branch.
|
# Checkout the requested branch.
|
||||||
run("%s checkout %s%s" % \
|
run("%s checkout %s%s" % \
|
||||||
|
|
Loading…
Reference in New Issue