From 5de00ad9d4807c27acec5f81fb42bf8e45b357f8 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 11 Jan 2021 17:24:52 -0800 Subject: [PATCH] tests/int/multi-arch.bash: fix for busybox Due to https://github.com/docker-library/busybox/pull/94 the URLs to get busybox has changed, so the current URLs give HTTP 404. Fix the URLs accordingly. Signed-off-by: Kir Kolyshkin --- tests/integration/multi-arch.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/multi-arch.bash b/tests/integration/multi-arch.bash index d2dcf394a..1dd751bbd 100644 --- a/tests/integration/multi-arch.bash +++ b/tests/integration/multi-arch.bash @@ -2,10 +2,10 @@ get_busybox() { case $(go env GOARCH) in arm64) - echo 'https://github.com/docker-library/busybox/raw/dist-arm64v8/glibc/busybox.tar.xz' + echo 'https://github.com/docker-library/busybox/raw/dist-arm64v8/stable/glibc/busybox.tar.xz' ;; *) - echo 'https://github.com/docker-library/busybox/raw/dist-amd64/glibc/busybox.tar.xz' + echo 'https://github.com/docker-library/busybox/raw/dist-amd64/stable/glibc/busybox.tar.xz' ;; esac }