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

Unified Diff: gclient_scm.py

Issue 2749018: https:// is a svn url. (Closed)
Patch Set: Created 10 years, 6 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: gclient_scm.py
diff --git a/gclient_scm.py b/gclient_scm.py
index 8e4540e39ac0e148dc2168f37fa0e285912300ea..b6240a7bad26e0b151622a331ab67090a8d15b0e 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -61,8 +61,8 @@ def GetScmName(url):
if (url.startswith('git://') or url.startswith('ssh://') or
url.endswith('.git')):
return 'git'
- elif (url.startswith('http://') or url.startswith('svn://') or
- url.startswith('ssh+svn://')):
+ elif (url.startswith('http://') or url.startswith('https://') or
+ url.startswith('svn://') or url.startswith('ssh+svn://')):
return 'svn'
return None
« 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