We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e621a98 commit 3c6810aCopy full SHA for 3c6810a
src/install-kani.sh
@@ -4,10 +4,10 @@
4
5
# If version is latest, install directly from cargo
6
if [ "$1" == "latest" ]; then
7
- cargo install --locked kani-verifier;
+ cargo +stable install --locked kani-verifier;
8
else
9
VERSION=$1
10
- cargo install --version $VERSION --locked kani-verifier;
+ cargo +stable install --version $VERSION --locked kani-verifier;
11
fi
12
13
# Check exit status for error handling
0 commit comments