Skip to content

Commit 3c6810a

Browse files
authored
Use stable version to install Kani (#53)
1 parent e621a98 commit 3c6810a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/install-kani.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
# If version is latest, install directly from cargo
66
if [ "$1" == "latest" ]; then
7-
cargo install --locked kani-verifier;
7+
cargo +stable install --locked kani-verifier;
88
else
99
VERSION=$1
10-
cargo install --version $VERSION --locked kani-verifier;
10+
cargo +stable install --version $VERSION --locked kani-verifier;
1111
fi
1212

1313
# Check exit status for error handling

0 commit comments

Comments
 (0)