| Submitter | Martin Jansa |
|---|---|
| Date | Jan. 31, 2013, 6:12 p.m. |
| Message ID | <1359655930-1404-2-git-send-email-Martin.Jansa@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/43765/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/lib/bb/fetch2/ssh.py b/lib/bb/fetch2/ssh.py index 61db435..721fb35 100644 --- a/lib/bb/fetch2/ssh.py +++ b/lib/bb/fetch2/ssh.py @@ -73,6 +73,11 @@ class SSH(FetchMethod): return False def urldata_init(self, urldata, d): + if 'protocol' in urldata.parm and urldata.parm['protocol'] == 'git': + raise bb.fetch2.ParameterError( + "Invalid protocol - if you wish to fetch from a git " + + "repository using ssh, you need to use " + + "git:// prefix with protocol=ssh", urldata.url) m = __pattern__.match(urldata.url) path = m.group('path') host = m.group('host')