Fix tests for linux/386 Docker image platform

This commit is contained in:
tyranron 2022-11-16 17:57:42 +01:00
parent 007504af65
commit 7feae7afe4
No known key found for this signature in database
GPG Key ID: 762E144FB230A4F0

View File

@ -14,6 +14,8 @@
[ "$output" = "armv7l" ]
elif [ "$PLATFORM" = "linux/arm64/v8" ]; then
[ "$output" = "aarch64" ]
elif [ "$PLATFORM" = "linux/386" ]; then
[ "$output" = "x86_64" ]
else
[ "$output" = "$(echo $PLATFORM | cut -d '/' -f2-)" ]
fi