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 061f787 commit e13fd38Copy full SHA for e13fd38
src/toolchain.rs
@@ -159,7 +159,7 @@ impl Toolchain {
159
// https://github.com/rust-lang/cargo/pull/5961
160
// is ready
161
let full_args = [&toolchain_arg, "install", "lazy_static"];
162
- RunCommand::new(&installed_binary("cargo"), &full_args)
+ let _ = RunCommand::new(&installed_binary("cargo"), &full_args)
163
.local_rustup()
164
.quiet(true)
165
.run()
@@ -168,7 +168,11 @@ impl Toolchain {
168
"unable to update the index for toolchain {}",
169
&self.rustup_name()
170
)
171
- })
+ });
172
+ // ignore the error untill
173
+ // https://github.com/rust-lang/cargo/pull/5961
174
+ // is ready
175
+ Ok(())
176
}
177
178
0 commit comments