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: |