Skip to content

Commit 81de3e1

Browse files
probonopdTheAssassin
authored andcommitted
Also check for "i386"
Alpine 3.21 seems to need this; Alpine 3.20 doesn't
1 parent d01a2a2 commit 81de3e1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/build-runtime.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ runtime="$(file -L /bin/bash)"
3434

3535
if [[ "$runtime" =~ 80386 ]]; then
3636
architecture=i686
37+
elif [[ "$runtime" =~ i386 ]]; then
38+
architecture=i686
3739
elif [[ "$runtime" =~ aarch64 ]]; then
3840
architecture=aarch64
3941
elif [[ "$runtime" =~ EABI5 ]]; then

0 commit comments

Comments
 (0)