OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Gclient-specific SCM-specific operations.""" | 5 """Gclient-specific SCM-specific operations.""" |
6 | 6 |
7 import collections | 7 import collections |
8 import logging | 8 import logging |
9 import os | 9 import os |
10 import posixpath | 10 import posixpath |
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
828 gclient_utils.safe_makedirs(parent_dir) | 828 gclient_utils.safe_makedirs(parent_dir) |
829 tmp_dir = tempfile.mkdtemp( | 829 tmp_dir = tempfile.mkdtemp( |
830 prefix='_gclient_%s_' % os.path.basename(self.checkout_path), | 830 prefix='_gclient_%s_' % os.path.basename(self.checkout_path), |
831 dir=parent_dir) | 831 dir=parent_dir) |
832 try: | 832 try: |
833 clone_cmd.append(tmp_dir) | 833 clone_cmd.append(tmp_dir) |
834 self._Run(clone_cmd, options, cwd=self._root_dir, retry=True) | 834 self._Run(clone_cmd, options, cwd=self._root_dir, retry=True) |
835 gclient_utils.safe_makedirs(self.checkout_path) | 835 gclient_utils.safe_makedirs(self.checkout_path) |
836 gclient_utils.safe_rename(os.path.join(tmp_dir, '.git'), | 836 gclient_utils.safe_rename(os.path.join(tmp_dir, '.git'), |
837 os.path.join(self.checkout_path, '.git')) | 837 os.path.join(self.checkout_path, '.git')) |
838 finally: | 838 except Exception as e: |
839 print >> sys.stderr, "Error running gclient commands: %s" % e | |
840 else: | |
839 if os.listdir(tmp_dir): | 841 if os.listdir(tmp_dir): |
iannucci
2014/02/13 00:12:32
keep the finally
add a traceback.print_exc()
| |
840 print('\n_____ removing non-empty tmp dir %s' % tmp_dir) | 842 print('\n_____ removing non-empty tmp dir %s' % tmp_dir) |
841 gclient_utils.rmtree(tmp_dir) | 843 gclient_utils.rmtree(tmp_dir) |
842 if revision.startswith('refs/heads/'): | 844 if revision.startswith('refs/heads/'): |
843 self._Run( | 845 self._Run( |
844 ['checkout', '--quiet', revision.replace('refs/heads/', '')], options) | 846 ['checkout', '--quiet', revision.replace('refs/heads/', '')], options) |
845 else: | 847 else: |
846 # Squelch git's very verbose detached HEAD warning and use our own | 848 # Squelch git's very verbose detached HEAD warning and use our own |
847 self._Run(['checkout', '--quiet', revision], options) | 849 self._Run(['checkout', '--quiet', revision], options) |
848 print( | 850 print( |
849 ('Checked out %s to a detached HEAD. Before making any commits\n' | 851 ('Checked out %s to a detached HEAD. Before making any commits\n' |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1470 new_command.append('--force') | 1472 new_command.append('--force') |
1471 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1473 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1472 new_command.extend(('--accept', 'theirs-conflict')) | 1474 new_command.extend(('--accept', 'theirs-conflict')) |
1473 elif options.manually_grab_svn_rev: | 1475 elif options.manually_grab_svn_rev: |
1474 new_command.append('--force') | 1476 new_command.append('--force') |
1475 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1477 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1476 new_command.extend(('--accept', 'postpone')) | 1478 new_command.extend(('--accept', 'postpone')) |
1477 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: | 1479 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: |
1478 new_command.extend(('--accept', 'postpone')) | 1480 new_command.extend(('--accept', 'postpone')) |
1479 return new_command | 1481 return new_command |
OLD | NEW |