From 13fe48a95cc9d6ec32ca0b6995afd5cc3d54f6d4 Mon Sep 17 00:00:00 2001 From: welisheva22 Date: Fri, 24 May 2024 05:05:26 -0400 Subject: [PATCH] Update install_clusterlink.sh (#614) documentation Changed spelling in comment (added an e in determine both times it appeared) code Added prefix CL_ to variable CL_ARCH Signed-off-by: welisheva22 --- hack/install_clusterlink.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hack/install_clusterlink.sh b/hack/install_clusterlink.sh index 060a002e..04750216 100755 --- a/hack/install_clusterlink.sh +++ b/hack/install_clusterlink.sh @@ -1,7 +1,7 @@ #!/bin/sh set -e -# Detrmine the OS. +# Determine the OS. OS=$(uname) if [ "${OS}" = "Darwin" ] ; then CL_OS="darwin" @@ -10,14 +10,14 @@ else fi -# Detrmine the OS architecture. +# Determine the OS architecture. OS_ARCH=$(uname -m) case "${OS_ARCH}" in x86_64|amd64) CL_ARCH=amd64 ;; armv8*|aarch64*|arm64) - ARCH=arm64 + CL_ARCH=arm64 ;; *) echo "This ${OS_ARCH} architecture isn't supported"