From fe141a119c3ef7ff52e832145e8d2875dc006f68 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sat, 23 Apr 2022 22:10:15 +0200 Subject: [PATCH] maketag.sh/makebranch.sh: Add https to https://downloads.openwrt.org Since OpenWrt 21.02 we are using https to download the packages. Change the default to https://downloads.openwrt.org. OpenWrt 19.07 was the last release which did not support https. Signed-off-by: Hauke Mehrtens --- makebranch.sh | 2 +- maketag.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/makebranch.sh b/makebranch.sh index 9e285d2..4c305ab 100755 --- a/makebranch.sh +++ b/makebranch.sh @@ -3,7 +3,7 @@ git_author="Release System" git_email="lede-dev@lists.infradead.org" -base_url="http://downloads.openwrt.org/releases" +base_url="https://downloads.openwrt.org/releases" [ -f "./feeds.conf.default" ] || { echo "Please execute as ./${0##*/}" >&2 diff --git a/maketag.sh b/maketag.sh index f45588d..80e94fa 100755 --- a/maketag.sh +++ b/maketag.sh @@ -4,7 +4,7 @@ git_author="$(git config user.name)" git_email="$(git config user.email)" gpg_keyid="" -base_url="http://downloads.openwrt.org/releases" +base_url="https://downloads.openwrt.org/releases" [ -f "./feeds.conf.default" ] || { echo "Please execute as ./${0##*/}" >&2 -- 2.30.2