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

Unified Diff: apply_issue.py

Issue 14531006: Make apply_issue.py more aggressive when deleting an entry from a DEPS file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apply_issue.py
diff --git a/apply_issue.py b/apply_issue.py
index efd915361524579268890409fb4f5434b89e593c..30748fd7564314c2357525e63e6c9fd0034a3107 100755
--- a/apply_issue.py
+++ b/apply_issue.py
@@ -175,7 +175,12 @@ def main():
if sys.platform == 'win32':
gclient_path += '.bat'
return subprocess.call(
- [gclient_path, 'sync', '--revision', base_rev, '--nohooks'],
+ [
+ gclient_path, 'sync',
+ '--revision', base_rev,
+ '--nohooks',
+ '--delete_unversioned_trees',
+ ],
cwd=gclient_root)
return 0
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698