From 2036d785f13c771bb109ed832ddf85d6591b485a Mon Sep 17 00:00:00 2001 From: Mathieu Gouttenoire Date: Thu, 22 Dec 2022 14:21:35 +0100 Subject: [PATCH] Fix stage3 download on other architectures --- scripts/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/functions.sh b/scripts/functions.sh index ccd26fd..c5bb3db 100644 --- a/scripts/functions.sh +++ b/scripts/functions.sh @@ -803,7 +803,7 @@ function download_stage3() { cd "$TMP_DIR" \ || die "Could not cd into '$TMP_DIR'" - local STAGE3_RELEASES="$GENTOO_MIRROR/releases/amd64/autobuilds/current-$STAGE3_BASENAME/" + local STAGE3_RELEASES="$GENTOO_MIRROR/releases/$GENTOO_ARCH/autobuilds/current-$STAGE3_BASENAME/" # Download upstream list of files CURRENT_STAGE3="$(download_stdout "$STAGE3_RELEASES")" \