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

Unified Diff: gclient_scm.py

Issue 2454463002: Make bot_update on win more resilient (Closed)
Patch Set: Created 4 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
Index: gclient_scm.py
diff --git a/gclient_scm.py b/gclient_scm.py
index 4a4e6015461582fbf28a1034f63e66aba1e26770..930c115507d705d3986215ec75c40d1c4d8cf780 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -270,12 +270,10 @@ class GitWrapper(SCMWrapper):
# time-stamp of the currently checked out revision.
return self._Capture(['log', '-n', '1', '--format=%ai'])
- @staticmethod
- def cleanup(options, args, file_list):
- """'Cleanup' the repo.
+ def cleanup(self, options, args, file_list):
+ """'Cleanup' the repo."""
+ self._maybe_break_locks(options)
agable 2016/10/28 16:55:34 I think you can set the flag directly on the optio
katthomas 2016/10/28 23:40:29 Done.
- There's no real git equivalent for the svn cleanup command, do a no-op.
- """
def diff(self, options, _args, _file_list):
try:

Powered by Google App Engine
This is Rietveld 408576698