* Fixed missing proto param in hg checkout with user and pw
@ 2014-05-26 7:25 Volker Vogelhuber
0 siblings, 0 replies; only message in thread
From: Volker Vogelhuber @ 2014-05-26 7:25 UTC (permalink / raw)
To: bitbake-devel
[-- Attachment #1: Type: text/plain, Size: 234 bytes --]
Attached a fix for the former patch when checking out a repository with
username and password using HG
(Hopefully this is the last time, sorry for not having test my former
one properly before posting)
Regards,
Volker
[-- Attachment #2: 0001-fixed-missing-proto-param-for-hg-checkout-with-user-.patch --]
[-- Type: text/x-patch, Size: 1460 bytes --]
From 5834eb8675c0d0b9e622e2ce9473ec36220dee2a Mon Sep 17 00:00:00 2001
From: Volker Vogelhuber <v.vogelhuber@digitalendoscopy.de>
Date: Mon, 26 May 2014 09:22:03 +0200
Subject: [PATCH 1/1] - fixed missing proto param for hg checkout with user and
pw
Signed-off-by: Volker Vogelhuber <v.vogelhuber@digitalendoscopy.de>
---
bitbake/lib/bb/fetch2/hg.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py
index 157b1b1..5760fcd 100644
--- a/bitbake/lib/bb/fetch2/hg.py
+++ b/bitbake/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":
--
1.9.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-05-26 7:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-26 7:25 Fixed missing proto param in hg checkout with user and pw Volker Vogelhuber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox