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

Unified Diff: checkout.py

Issue 10983092: Add --no-backup-if-mismatch so no .orig file is created when fuzzing occurs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/checkout_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: checkout.py
diff --git a/checkout.py b/checkout.py
index 217a5a5a4bfbed8868ec1c4e43085c7fbea7e83a..03e28f68caf5557edb7a74ce75297bf5eedb3010 100644
--- a/checkout.py
+++ b/checkout.py
@@ -343,7 +343,13 @@ class SvnCheckout(CheckoutBase, SvnMixIn):
self._check_output_svn(
['copy', p.source_filename, p.filename])
if p.diff_hunks:
- cmd = ['patch', '-p%s' % p.patchlevel, '--forward', '--force']
+ cmd = [
+ 'patch',
+ '-p%s' % p.patchlevel,
+ '--forward',
+ '--force',
+ '--no-backup-if-mismatch',
+ ]
stdout += subprocess2.check_output(
cmd, stdin=p.get(False), cwd=self.project_path)
elif p.is_new and not os.path.exists(filepath):
« no previous file with comments | « no previous file | tests/checkout_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698