We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
latest
1 parent 6ded0a4 commit 0fd3015Copy full SHA for 0fd3015
generate-stackbrew-library.sh
@@ -112,7 +112,9 @@ for version; do
112
archCommit="${archCommits[$arch]}"
113
if wget --quiet --spider -O /dev/null -o /dev/null "$rawGitUrl/$archCommit/$dir/$arch/rootfs.tar.gz"; then
114
variantArches+=( "$arch" )
115
- if [ -z "${archLatestDir[$arch]:-}" ]; then
+ 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
117
+ elif [ -z "${archLatestDir[$arch]:-}" ]; then
118
# record the first supported directory per architecture for "latest" and friends
119
archLatestDir["$arch"]="$dir/$arch"
120
actualArches+=( "$arch" )
0 commit comments