From 9dfcf5c44339229d3cdef5395322441960ca9ee2 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 7 Aug 2014 12:32:51 +0000 Subject: [PATCH] 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 --- tools/automate/automate-git.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/automate/automate-git.py b/tools/automate/automate-git.py index 68de316c3..e04a5b12d 100644 --- a/tools/automate/automate-git.py +++ b/tools/automate/automate-git.py @@ -813,6 +813,8 @@ if chromium_checkout_changed: # Fetch new sources. 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. run("%s checkout %s%s" % \