OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """A git command for managing a local cache of git repositories.""" | 6 """A git command for managing a local cache of git repositories.""" |
7 | 7 |
8 import errno | 8 import errno |
9 import logging | 9 import logging |
10 import optparse | 10 import optparse |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
283 self.add_option('-v', '--verbose', action='count', default=0, | 283 self.add_option('-v', '--verbose', action='count', default=0, |
284 help='Increase verbosity (can be passed multiple times)') | 284 help='Increase verbosity (can be passed multiple times)') |
285 | 285 |
286 def parse_args(self, args=None, values=None): | 286 def parse_args(self, args=None, values=None): |
287 options, args = optparse.OptionParser.parse_args(self, args, values) | 287 options, args = optparse.OptionParser.parse_args(self, args, values) |
288 | 288 |
289 try: | 289 try: |
290 global_cache_dir = subprocess.check_output( | 290 global_cache_dir = subprocess.check_output( |
291 [GIT_EXECUTABLE, 'config', '--global', 'cache.cachepath']).strip() | 291 [GIT_EXECUTABLE, 'config', '--global', 'cache.cachepath']).strip() |
292 if options.cache_dir: | 292 if options.cache_dir: |
293 logging.warn('Overriding globally-configured cache directory.') | 293 if global_cache_dir and options.cache_dir != global_cache_dir: |
Ryan Tseng
2014/03/28 01:42:45
might need to coerce both sides to abspath to do a
szager1
2014/03/28 06:22:08
Done.
| |
294 logging.warn('Overriding globally-configured cache directory.') | |
294 else: | 295 else: |
295 options.cache_dir = global_cache_dir | 296 options.cache_dir = global_cache_dir |
296 except subprocess.CalledProcessError: | 297 except subprocess.CalledProcessError: |
297 if not options.cache_dir: | 298 if not options.cache_dir: |
298 self.error('No cache directory specified on command line ' | 299 self.error('No cache directory specified on command line ' |
299 'or in cache.cachepath.') | 300 'or in cache.cachepath.') |
300 options.cache_dir = os.path.abspath(options.cache_dir) | 301 options.cache_dir = os.path.abspath(options.cache_dir) |
301 | 302 |
302 levels = [logging.WARNING, logging.INFO, logging.DEBUG] | 303 levels = [logging.WARNING, logging.INFO, logging.DEBUG] |
303 logging.basicConfig(level=levels[min(options.verbose, len(levels) - 1)]) | 304 logging.basicConfig(level=levels[min(options.verbose, len(levels) - 1)]) |
304 | 305 |
305 return options, args | 306 return options, args |
306 | 307 |
307 | 308 |
308 def main(argv): | 309 def main(argv): |
309 dispatcher = subcommand.CommandDispatcher(__name__) | 310 dispatcher = subcommand.CommandDispatcher(__name__) |
310 return dispatcher.execute(OptionParser(), argv) | 311 return dispatcher.execute(OptionParser(), argv) |
311 | 312 |
312 | 313 |
313 if __name__ == '__main__': | 314 if __name__ == '__main__': |
314 sys.exit(main(sys.argv[1:])) | 315 sys.exit(main(sys.argv[1:])) |
OLD | NEW |