Skip to content

Commit 3fd12f4

Browse files
sondavidbKern--
authored andcommitted
Fix scripts/install-dep.sh cmake shasum for ARM64
Signed-off-by: David Son <[email protected]>
1 parent 0184057 commit 3fd12f4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/install-dep.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ arch="$(uname -m)"
2727
# install cmake
2828
cmake_ver="3.24.1"
2929
cmake_expected_shasum="4d9be98ee0ff1c5ad36df0d64892eed3af86a2d2ecdef81a0c78344754e2af44"
30+
if [ "${arch}" == "aarch64" ]; then
31+
cmake_expected_shasum="393f8fdec35d0fbbe81bf9aceef33a93d1f1bcaf1c1c5d63963ccf3301538309"
32+
fi
3033
if ! command -v cmake &> /dev/null
3134
then
3235
wget https://github.com/Kitware/CMake/releases/download/v"${cmake_ver}"/cmake-"${cmake_ver}"-Linux-"${arch}".sh -O cmake.sh

0 commit comments

Comments
 (0)