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

Unified Diff: setup_links.py

Issue 2339813002: Remove references to svn version control. (Closed)
Patch Set: add the line: call python tools\clang\scripts\update.py to show how to update the compiler. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/libyuv/version.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: setup_links.py
diff --git a/setup_links.py b/setup_links.py
index 2825c28d9acf42b6be65ede2f3d269380a00f40c..a5b2ac95508dcc473127b294333010d839c85322 100755
--- a/setup_links.py
+++ b/setup_links.py
@@ -192,7 +192,7 @@ class Rmtree(Action):
def doit(self, _):
if sys.platform.startswith('win'):
# shutil.rmtree() doesn't work on Windows if any of the directories are
- # read-only, which svn repositories are.
+ # read-only.
subprocess.check_call(['rd', '/q', '/s', self._path], shell=True)
else:
shutil.rmtree(self._path)
« no previous file with comments | « include/libyuv/version.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698