We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--offline
./miri install
1 parent 86911fd commit 43100f5Copy full SHA for 43100f5
miri
@@ -133,10 +133,9 @@ find_sysroot() {
133
# Run command.
134
case "$COMMAND" in
135
install)
136
- # "--locked" to respect the Cargo.lock file if it exists,
137
- # "--offline" to avoid querying the registry (for yanked packages).
138
- $CARGO install $CARGO_EXTRA_FLAGS --path "$MIRIDIR" --force --locked --offline "$@"
139
- $CARGO install $CARGO_EXTRA_FLAGS --path "$MIRIDIR"/cargo-miri --force --locked --offline "$@"
+ # "--locked" to respect the Cargo.lock file if it exists.
+ $CARGO install $CARGO_EXTRA_FLAGS --path "$MIRIDIR" --force --locked "$@"
+ $CARGO install $CARGO_EXTRA_FLAGS --path "$MIRIDIR"/cargo-miri --force --locked "$@"
140
;;
141
check)
142
# Check, and let caller control flags.
0 commit comments