Currently the script works on `x86_64` processors. Expand the list to include `arm64` processors also. ``` if [[ "$(uname -m)" != "x86_64" ]]; then echo "Error: This script only supports x86_64 architecture." exit 1 fi ```