diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-29 17:26:15 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-29 17:26:15 -0600 |
commit | 353e48df5a102555b457647e683e19412189f3f3 (patch) | |
tree | c6ae111a2a0bc3db456b4d7b2b62bbfd2af457af /repos | |
parent | 1e65258d8d9bfc0b2c55336c707c0118de50d22e (diff) | |
download | where-packaged-353e48df5a102555b457647e683e19412189f3f3.tar.gz where-packaged-353e48df5a102555b457647e683e19412189f3f3.zip |
use an alpine mirror
Diffstat (limited to 'repos')
-rw-r--r-- | repos/alpine_linux.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repos/alpine_linux.py b/repos/alpine_linux.py index 7c646cc..f8612d2 100644 --- a/repos/alpine_linux.py +++ b/repos/alpine_linux.py @@ -58,7 +58,7 @@ def parse_cached(cached: Path) -> Mapping[str, Version]: return parse_apkindex(apkindex_file) def build_repo(name: str, url_path: str) -> Repository: - url = f'http://dl-cdn.alpinelinux.org/alpine/{url_path}/APKINDEX.tar.gz' + url = f'https://mirrors.kernel.org/alpine/{url_path}/APKINDEX.tar.gz' return Repository( family='Alpine Linux', repo=name, |