Skip to content

Commit

Permalink
Use stable version to install Kani (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhassan-aws authored Jan 10, 2024
1 parent e621a98 commit 3c6810a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/install-kani.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

# If version is latest, install directly from cargo
if [ "$1" == "latest" ]; then
cargo install --locked kani-verifier;
cargo +stable install --locked kani-verifier;
else
VERSION=$1
cargo install --version $VERSION --locked kani-verifier;
cargo +stable install --version $VERSION --locked kani-verifier;
fi

# Check exit status for error handling
Expand Down

0 comments on commit 3c6810a

Please sign in to comment.