Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: gclient.py

Issue 8382030: depot_tools: Add git svn find-rev for safesync_url parsing (commonly LKGR link). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: review comments, still need to add test Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gclient_scm.py » ('j') | gclient_scm.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient.py
===================================================================
--- gclient.py (revision 107937)
+++ gclient.py (working copy)
@@ -923,8 +923,12 @@
handle = urllib.urlopen(s.safesync_url)
rev = handle.read().strip()
handle.close()
- if len(rev):
- self._options.revisions.append('%s@%s' % (s.name, rev))
+ scm = gclient_scm.CreateSCM(s.url, s.root.root_dir, s.name)
+ safe_rev = scm.FindSafesyncRev(rev)
+ if len(safe_rev):
+ if self._options.verbose:
+ print('Using safesync_url revision: %s.\n' % safe_rev)
+ self._options.revisions.append('%s@%s' % (s.name, safe_rev))
if not self._options.revisions:
return revision_overrides
solutions_names = [s.name for s in self.dependencies]
« no previous file with comments | « no previous file | gclient_scm.py » ('j') | gclient_scm.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698