Commit b74dca23 authored by maruel@chromium.org's avatar maruel@chromium.org

https:// is a svn url.

TBR=bradnelson

Review URL: http://codereview.chromium.org/2749018

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@49582 0039d316-1c4b-4281-b951-d872f2087c98
parent 9eda4110
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment