add missing semicolon (#8383)

This commit is contained in:
Satadru Pramanik, DO, MPH, MEng
2023-06-13 20:44:56 -04:00
committed by GitHub
parent 0659c3ab7f
commit 4d1647596a

View File

@@ -105,8 +105,7 @@ case "${ARCH}" in
# x86_64 and aarch64 userspace
# shellcheck disable=SC2046
[ $(od -An -t x1 -j 4 -N 1 /bin/bash) == 02 ] && LIB_SUFFIX='64'
# shellcheck disable=SC1083
if [[ $LIB_SUFFIX == '64' ]] && { [[ "$ARCH" =~ ^(armv7l|armv81|aarch64)$ ]] }; then
if [[ $LIB_SUFFIX == '64' ]] && { [[ "$ARCH" =~ ^(armv7l|armv81|aarch64)$ ]]; }; then
echo_error "Your device is not supported by Chromebrew yet, installing as armv7l."
LIB_SUFFIX=
ARMV7LONAARCH64=1