Skip to content

Commit 7f1fc5e

Browse files
committed
Fix architecture exclusion
1 parent febea33 commit 7f1fc5e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

generate-stackbrew-library.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,8 @@ for version in "${versions[@]}"; do
8585

8686
parent="$(awk 'toupper($1) == "FROM" { print $2 }' <<<"$dockerfile")"
8787
# no i386 for now: https://github.com/docker-library/gcc/issues/38
88-
arches="$(echo " ${parentRepoToArches[$parent]} " | sed -r -e 's/ i386 / /g')"
8988
# no mips64le for now: https://github.com/docker-library/gcc/issues/67
90-
arches="$(echo " ${parentRepoToArches[$parent]} " | sed -r -e 's/ mips64le / /g')"
89+
arches="$(echo " ${parentRepoToArches[$parent]} " | sed -r -e 's/ i386 / /g' -e 's/ mips64le / /g')"
9190

9291
echo
9392
grep -m1 '^# Last Modified: ' <<<"$dockerfile"

0 commit comments

Comments
 (0)