Skip to content

Commit

Permalink
Also check for "i386"
Browse files Browse the repository at this point in the history
Alpine 3.21 seems to need this; Alpine 3.20 doesn't
  • Loading branch information
probonopd authored and TheAssassin committed Dec 8, 2024
1 parent d01a2a2 commit 81de3e1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/build-runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 81de3e1

Please sign in to comment.