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

Unified Diff: drover.py

Issue 340079: Use public SVN URL for drover.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 11 years, 1 month 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: drover.py
===================================================================
--- drover.py (revision 30848)
+++ drover.py (working copy)
@@ -273,7 +273,7 @@
map = dict()
for file_info in files_info:
if (file_info[0] == "A"):
- if(isSVNDirectory("svn://chrome-svn/chrome/" + file_info[1], revision)):
+ if(isSVNDirectory("svn://svn.chromium.org/chrome/" + file_info[1], revision)):
Nicolas Sylvain 2009/11/03 23:01:05 80 char, eventually we should make it a global var
map[file_info[2] + "/" + file_info[3]] = ""
export_map_ = map
@@ -292,7 +292,7 @@
map = dict()
for file_info in files_info:
if (file_info[0] == "D"):
- if(isSVNDirectory("svn://chrome-svn/chrome/" + file_info[1], revision)):
+ if(isSVNDirectory("svn://svn.chromium.org/chrome/" + file_info[1], revision)):
Nicolas Sylvain 2009/11/03 23:01:05 80 char
map[file_info[2] + "/" + file_info[3]] = ""
delete_map_ = map
@@ -347,7 +347,7 @@
# Initialize some variables used below. They can be overwritten by
# the drover.properties file.
- BASE_URL = "svn://chrome-svn/chrome"
+ BASE_URL = "svn://svn.chromium.org/chrome"
TRUNK_URL = BASE_URL + "/trunk/src"
BRANCH_URL = BASE_URL + "/branches/$branch/src"
SKIP_CHECK_WORKING = True
@@ -477,4 +477,4 @@
option_parser.error("--merge requires a --branch")
sys.exit(1)
- sys.exit(main(options, args))
+ sys.exit(main(options, args))
« 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