From 9e56710c7203b1ec6cbefa758c81b69b697fe1a4 Mon Sep 17 00:00:00 2001 From: Daniel Ammann Date: Mon, 13 Sep 2021 09:56:50 +0200 Subject: fetch2/wget: Enable ftps The fetcher would fail with: Could not find a fetcher which supports the URL: ftps://... Signed-off-by: Daniel Ammann Signed-off-by: Richard Purdie --- 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 -- cgit 1.2.3-korg