Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backends/arm/scripts/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function check_os_support() {
# Linux on arm64/aarch64
# Darwin on arm64/aarch64
if [[ "${ARCH}" == "aarch64" ]] || [[ "${ARCH}" == "arm64" ]]; then
if [[ "${OS}" != "Darwin" ]] || [[ "${OS}" != "Linux" ]]; then
if [[ "${OS}" != "Darwin" ]] && [[ "${OS}" != "Linux" ]]; then
echo "Error: Only Linux and Darwin are supported on arm64"
exit 1
fi
Expand Down
Loading