From 81de3e127a1acc40cce58584609ff07c2fdc338d Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 8 Dec 2024 19:47:43 +0100 Subject: [PATCH] Also check for "i386" Alpine 3.21 seems to need this; Alpine 3.20 doesn't --- scripts/build-runtime.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build-runtime.sh b/scripts/build-runtime.sh index 39f98e4..3ce3b91 100755 --- a/scripts/build-runtime.sh +++ b/scripts/build-runtime.sh @@ -34,6 +34,8 @@ runtime="$(file -L /bin/bash)" if [[ "$runtime" =~ 80386 ]]; then architecture=i686 +elif [[ "$runtime" =~ i386 ]]; then + architecture=i686 elif [[ "$runtime" =~ aarch64 ]]; then architecture=aarch64 elif [[ "$runtime" =~ EABI5 ]]; then