summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch2/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 7954f66ac5..25c2c510f6 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -88,7 +88,7 @@ class Git(FetchMethod):
88 else: 88 else:
89 ud.proto = "git" 89 ud.proto = "git"
90 90
91 if not ud.proto in ('git', 'file', 'ssh', 'http', 'https'): 91 if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'):
92 raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) 92 raise bb.fetch2.ParameterError("Invalid protocol type", ud.url)
93 93
94 ud.nocheckout = ud.parm.get("nocheckout","0") == "1" 94 ud.nocheckout = ud.parm.get("nocheckout","0") == "1"