Fixes #4881 -- Add aarch64 to supported architectures on Docker.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-12-14 23:29:13 -06:00
parent be6c616d11
commit 22ba770dd8
No known key found for this signature in database
GPG Key ID: 9FC8B9E008872109
1 changed files with 2 additions and 0 deletions

View File

@ -247,6 +247,8 @@ check-install-requirements() {
CURRENT_ARCH=$(uname -m)
if [[ $CURRENT_ARCH == "x86_64" ]]; then
echo -en "\e[32m[PASS]\e[0m Architecture: ${CURRENT_ARCH}\n"
elif [[ $CURRENT_ARCH == "aarch64" ]]; then
echo -en "\e[32m[PASS]\e[0m Architecture: ${CURRENT_ARCH}\n"
else
echo -en "\e[41m[FAIL]\e[0m Architecture: ${CURRENT_ARCH}\n"