Skip to content

Commit

Permalink
fix architecture check in verify-release-artifacts
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Alvarez <alvajus@amazon.com>
  • Loading branch information
pendo324 committed Aug 5, 2024
1 parent d0fc67e commit 49fc2de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/verify-release-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [ "${arch}" == "" ]; then
esac
fi

if [ "${arch}" != "amd64" ] && [ "${arch}" != "amd64" ] ; then
if [ "${arch}" != "amd64" ] && [ "${arch}" != "arm64" ] ; then
echo "Error: unsupported arch"
exit 1
fi
Expand Down

0 comments on commit 49fc2de

Please sign in to comment.