Skip to content

Commit

Permalink
Update install_clusterlink.sh (#614)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
welisheva22 authored May 24, 2024
1 parent 9f5256b commit 13fe48a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hack/install_clusterlink.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

# Detrmine the OS.
# Determine the OS.
OS=$(uname)
if [ "${OS}" = "Darwin" ] ; then
CL_OS="darwin"
Expand All @@ -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"
Expand Down

0 comments on commit 13fe48a

Please sign in to comment.