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

Side by Side Diff: webrtc/build/prune_third_party_mockito_origin.py

Issue 2326523002: Add a DEPS gclient hook to prune corrupt mockito remote. (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « sync_chromium.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
4 #
5 # Use of this source code is governed by a BSD-style license
6 # that can be found in the LICENSE file in the root of the source
7 # tree. An additional intellectual property rights grant can be found
8 # in the file PATENTS. All contributing project authors may
9 # be found in the AUTHORS file in the root of the source tree.
10
11 # Used to work around an upstream bug (crbug.com/644722).
12 # This file will be removed ASAP.
13
14 import os
15 import subprocess
16 import sys
17
18 # Path to the corrupt project.
19 MOCKITO_CHECKOUT_PATH = 'src/third_party/mockito/src'
20
21
22 def main():
23 # If this checkout exists, run `git remote prune origin` from it.
24 if os.path.isdir(MOCKITO_CHECKOUT_PATH):
25 subprocess.check_output(
26 ['git', 'remote', 'prune', 'origin'], cwd=MOCKITO_CHECKOUT_PATH)
27 else:
28 sys.stdout.write('{} does not exist!\n'.format(MOCKITO_CHECKOUT_PATH))
29 return 0
30
31
32 if __name__ == '__main__':
33 sys.exit(main())
OLDNEW
« no previous file with comments | « sync_chromium.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698