Skip to content

Commit

Permalink
remove cli hash check
Browse files Browse the repository at this point in the history
  • Loading branch information
0xaptosj committed Feb 21, 2024
1 parent f301e81 commit bcdb316
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions move/sh_scripts/dev_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ if ! command -v aptos &>/dev/null; then
echo "aptos could not be found"
echo "installing it..."
TARGET=Ubuntu-x86_64
VERSION=2.3.0
VERSION=2.4.0
wget https://github.com/aptos-labs/aptos-core/releases/download/aptos-cli-v$VERSION/aptos-cli-$VERSION-$TARGET.zip
sha=$(shasum -a 256 aptos-cli-$VERSION-$TARGET.zip | awk '{ print $1 }')
[ "$sha" != "d9dc5c6ab3366f25d8547ca939f4a6be659f064c344a81f14631bc435ef6bafe" ] && echo "shasum mismatch" && exit 1
unzip aptos-cli-$VERSION-$TARGET.zip
chmod +x aptos
else
Expand Down

0 comments on commit bcdb316

Please sign in to comment.