summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Vogelhuber <v.vogelhuber@digitalendoscopy.de>2014-05-26 09:22:03 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-29 13:18:11 +0100
commit6e7f7cdc0d533911046741817be1cfffde23f125 (patch)
tree821fe792e5e6f428576d14c70f05c0e5df57213e
parent2d3478c97b7c7a2f5b12a8be302d8ea5ba4e1277 (diff)
downloadbitbake-6e7f7cdc0d533911046741817be1cfffde23f125.tar.gz
fetch2/hg: Fix missing proto param for hg checkout with user and pw
A fix for the former patch when checking out a repository with username and password using HG Signed-off-by: Volker Vogelhuber <v.vogelhuber@digitalendoscopy.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/hg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch2/hg.py b/lib/bb/fetch2/hg.py
index 157b1b1d8..5760fcdc5 100644
--- a/lib/bb/fetch2/hg.py
+++ b/lib/bb/fetch2/hg.py
@@ -111,7 +111,7 @@ class Hg(FetchMethod):
if command == "fetch":
if ud.user and ud.pswd:
- cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" clone %s %s://%s/%s %s" % (basecmd, ud.user, ud.pswd, " ".join(options), proto, hgroot, ud.module, ud.module)
+ cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" clone %s %s://%s/%s %s" % (basecmd, ud.user, ud.pswd, proto, " ".join(options), proto, hgroot, ud.module, ud.module)
else:
cmd = "%s clone %s %s://%s/%s %s" % (basecmd, " ".join(options), proto, hgroot, ud.module, ud.module)
elif command == "pull":