Skip to content

Commit b333133

Browse files
committed
Update riscv64 "latest" exclusion logic now that musl is on Alpine 3.20 with riscv64 support
1 parent 6fda3b5 commit b333133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

generate-stackbrew-library.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ for version; do
112112
archCommit="${archCommits[$arch]}"
113113
if wget --quiet --spider -O /dev/null -o /dev/null "$rawGitUrl/$archCommit/$dir/$arch/rootfs.tar.gz"; then
114114
variantArches+=( "$arch" )
115-
if [ "$arch" = 'riscv64' ] && [[ "$variant" != *uclibc* ]]; then
116-
: # do not let "glibc" or "musl" be "latest" on riscv64 until they are no longer based on Debian Unstable / Alpine Edge
115+
if [ "$arch" = 'riscv64' ] && [ "$variant" = 'glibc' ]; then
116+
: # do not let "glibc" be "latest" on riscv64 until it is no longer based on Debian Unstable
117117
elif [ -z "${archLatestDir[$arch]:-}" ]; then
118118
# record the first supported directory per architecture for "latest" and friends
119119
archLatestDir["$arch"]="$dir/$arch"

0 commit comments

Comments
 (0)