fix: 🐛 Fix version

This commit is contained in:
Sergio Gasquez 2022-09-19 15:04:41 +00:00
parent f8bbe4c402
commit 38bfba6faa

View File

@ -70,7 +70,7 @@ impl RustToolchain {
"add",
"rust-src",
"--toolchain",
self.version.clone()
self.nightly_version.clone()
)
.run()?;
cmd!(
@ -78,7 +78,7 @@ impl RustToolchain {
"target",
"add",
"--toolchain",
self.version.clone(),
self.nightly_version.clone(),
"riscv32imac-unknown-none-elf"
)
.run()?;