From cb187d7ad28ae48a62005801030e783366d51078 Mon Sep 17 00:00:00 2001 From: Kevin Olbrich Date: Wed, 15 May 2024 13:59:16 +0200 Subject: [PATCH] gluon-autoupdater: allow https mirror urls --- package/gluon-autoupdater/check_site.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/gluon-autoupdater/check_site.lua b/package/gluon-autoupdater/check_site.lua index aaf1763c3e..ef54d25a87 100644 --- a/package/gluon-autoupdater/check_site.lua +++ b/package/gluon-autoupdater/check_site.lua @@ -2,7 +2,7 @@ local branches = table_keys(need_table({'autoupdater', 'branches'}, function(bra need_alphanumeric_key(branch) need_string(in_site(extend(branch, {'name'}))) - need_string_array_match(extend(branch, {'mirrors'}), '^http://') + need_string_array_match(extend(branch, {'mirrors'}), '^https?://') local pubkeys = need_string_array_match(in_site(extend(branch, {'pubkeys'})), '^%x+$') need_number(in_site(extend(branch, {'good_signatures'})))