Skip to content

Commit

Permalink
Use stable version to install Kani
Browse files Browse the repository at this point in the history
  • Loading branch information
zhassan-aws committed Jan 10, 2024
1 parent e621a98 commit 412d262
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 412d262

Please # to comment.