Move bash variable to left of test.

Partial #638

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
Ross Goldberg 2024-11-16 00:31:59 -05:00
parent a4b7a64e0d
commit 0ea3035324
No known key found for this signature in database

View file

@ -80,7 +80,7 @@ case "${CURRENT_OS_VERSION_MAJOR}" in
esac
# Prefix platform with architecture
if [[ 'arm64' == "$(uname -m)" ]]; then
if [[ "$(uname -m)" == 'arm64' ]]; then
CURRENT_PLATFORM="arm64_${CURRENT_PLATFORM}"
fi