fix: arm uname

This commit is contained in:
roderik.eth
2023-05-18 21:48:54 +02:00
committed by GitHub
parent 9c2d98ed07
commit 0e91b4a315

View File

@@ -50,7 +50,7 @@ install_op_cli() {
ARCHITECTURE=""
if [[ "$(uname -m)" == "x86_64" ]]; then
ARCHITECTURE="amd64"
elif [[ "$(uname -m)" == "arm64" ]]; then
elif [[ "$(uname -m)" == "aarch64" ]]; then
ARCHITECTURE="arm64"
else
echo "Unsupported architecture"