* [PATCH] fetch2/wget: Enable ftps
@ 2021-09-13 7:56 Daniel Ammann
0 siblings, 0 replies; only message in thread
From: Daniel Ammann @ 2021-09-13 7:56 UTC (permalink / raw)
To: bitbake-devel
The fetcher would fail with:
Could not find a fetcher which supports the URL: ftps://...
Signed-off-by: Daniel Ammann <daniel.ammann@bytesatwork.ch>
---
lib/bb/fetch2/wget.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/bb/fetch2/wget.py b/lib/bb/fetch2/wget.py
index 9a49e64a0..349891e85 100644
--- a/lib/bb/fetch2/wget.py
+++ b/lib/bb/fetch2/wget.py
@@ -69,7 +69,7 @@ class Wget(FetchMethod):
"""
Check to see if a given url can be fetched with wget.
"""
- return ud.type in ['http', 'https', 'ftp']
+ return ud.type in ['http', 'https', 'ftp', 'ftps']
def recommends_checksum(self, urldata):
return True
--
2.20.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-09-13 7:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-13 7:56 [PATCH] fetch2/wget: Enable ftps Daniel Ammann
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.