[bitbake-devel,2/3] ssh.py: throw ParameterError when someone tries ssh://foo; protocol=git
Submitted by Martin Jansa on Jan. 28, 2013, 3:56 p.m.
|
Patch ID: 43559
Details
Commit Message
@@ -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')
* taken from SFTP fetcher: http://patchwork.openembedded.org/patch/43027/ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> --- lib/bb/fetch2/ssh.py | 5 +++++ 1 file changed, 5 insertions(+)