Skip to content

Commit 1c0e9a4

Browse files
committed
Also exclude arm64
1 parent 8855c67 commit 1c0e9a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

generate-stackbrew-library.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ for version in "${versions[@]}"; do
9696

9797
if [ "$variant" = 'debian' ]; then
9898
# no ppc64le for now: https://www.rabbitmq.com/debian/dists/testing/Release (no "ppc64el" in "Architectures")
99-
variantArches="$(echo " $variantArches " | sed -r -e 's/ ppc64le / /g')"
99+
# same with arm64
100+
variantArches="$(echo " $variantArches " | sed -r -e 's/ (ppc64le|arm64v[^ ]+) / /g')"
100101
fi
101102

102103
echo

0 commit comments

Comments
 (0)