aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Ammann <daniel.ammann@bytesatwork.ch>2021-09-13 09:56:50 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-16 09:50:53 +0100
commit9e56710c7203b1ec6cbefa758c81b69b697fe1a4 (patch)
tree4ce969c09a763f73e9d0111814c50bbc636bb43a
parentb4fe8507079b6464287549f3eac1f1fc8d0d9be2 (diff)
downloadbitbake-9e56710c7203b1ec6cbefa758c81b69b697fe1a4.tar.gz
fetch2/wget: Enable ftps
The fetcher would fail with: Could not find a fetcher which supports the URL: ftps://... Signed-off-by: Daniel Ammann <daniel.ammann@bytesatwork.ch> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/wget.py2
1 files changed, 1 insertions, 1 deletions
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