diff options
author | Paul Spooren <mail@aparcar.org> | 2022-03-20 13:34:22 +0000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2022-03-20 13:34:22 +0000 |
commit | a036c1d43bfb494fb87925e55e96bb5d3058060d (patch) | |
tree | af182a9556cbb52023cb20d809ab7a40cef2083c /include | |
parent | 43e6d979b8babd9438ccedc1076fe2c09120e8ca (diff) | |
download | upstream-a036c1d43bfb494fb87925e55e96bb5d3058060d.tar.gz upstream-a036c1d43bfb494fb87925e55e96bb5d3058060d.tar.bz2 upstream-a036c1d43bfb494fb87925e55e96bb5d3058060d.zip |
build: switch VERSION_REPO again to HTTPS
The maintainer-tools.git script still defaults to `http` while
eveyrthing moved over to `https`. This commit switches VERSION_REPO
again back to encrypted connections.
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/version.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/version.mk b/include/version.mk index 4df8d74002..ca6a15bdbf 100644 --- a/include/version.mk +++ b/include/version.mk @@ -29,7 +29,7 @@ VERSION_CODE:=$(call qstrip,$(CONFIG_VERSION_CODE)) VERSION_CODE:=$(if $(VERSION_CODE),$(VERSION_CODE),$(REVISION)) VERSION_REPO:=$(call qstrip,$(CONFIG_VERSION_REPO)) -VERSION_REPO:=$(if $(VERSION_REPO),$(VERSION_REPO),http://downloads.openwrt.org/releases/22.03-SNAPSHOT) +VERSION_REPO:=$(if $(VERSION_REPO),$(VERSION_REPO),https://downloads.openwrt.org/releases/22.03-SNAPSHOT) VERSION_DIST:=$(call qstrip,$(CONFIG_VERSION_DIST)) VERSION_DIST:=$(if $(VERSION_DIST),$(VERSION_DIST),OpenWrt) |