From 09af4bf24f6902c3a9c64316c4f9d297c3563988 Mon Sep 17 00:00:00 2001 From: no92 Date: Fri, 27 Oct 2023 18:05:42 +0200 Subject: [PATCH] prereqs: fix download of xbps --- xbstrap/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbstrap/__init__.py b/xbstrap/__init__.py index ef5c7d4..3af3c3c 100755 --- a/xbstrap/__init__.py +++ b/xbstrap/__init__.py @@ -839,7 +839,7 @@ def do_prereqs(args): tar.extract(info, bin_dir) os.chmod(os.path.join(bin_dir, "cbuildrt"), 0o755) if "xbps" in comps: - url = "https://alpha.de.repo.voidlinux.org/static" + url = "https://repo-default.voidlinux.org/static" url += "/xbps-static-static-0.59_5.x86_64-musl.tar.xz" tar_path = os.path.join(home, "xbps.tar.xz")