From 54620100d26882fd999af60d1f8c82f08fc6c3dd Mon Sep 17 00:00:00 2001 From: helto4real Date: Sat, 28 Oct 2023 13:27:26 +0200 Subject: [PATCH] bug fix on arm7 builds --- base/s6.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/s6.sh b/base/s6.sh index 0b67357..a7da14a 100644 --- a/base/s6.sh +++ b/base/s6.sh @@ -6,7 +6,7 @@ tar -C / -Jxpf /tmp/s6-overlay-noarch.tar.xz ARCH=$(uname -m) -if [ $ARCH == "armv7l" ]; then +if [ $ARCH == "armv7" ]; then wget -nv -O /tmp/s6.tar.gz "https://github.com/just-containers/s6-overlay/releases/download/v${S6_VERSION}/s6-overlay-armhf.tar.xz" elif [ $ARCH == "aarch64" ]; then wget -nv -O /tmp/s6.tar.gz "https://github.com/just-containers/s6-overlay/releases/download/v${S6_VERSION}/s6-overlay-aarch64.tar.xz"