From d6fb3dd3aa44ccf1e75f70657490bd488ed9480b Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Tue, 20 Sep 2022 06:59:28 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Fix=20toolchain=5Fdestina?= =?UTF-8?q?tion=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/rust_toolchain.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/rust_toolchain.rs b/src/rust_toolchain.rs index 203ad20..7a387b6 100644 --- a/src/rust_toolchain.rs +++ b/src/rust_toolchain.rs @@ -178,8 +178,7 @@ impl RustToolchain { let toolchain_destination = args .toolchain_destination .clone() - .unwrap_or_else(|| rustup_home.join("/toolchains/esp")); - + .unwrap_or_else(|| rustup_home.join("toolchains").join("esp")); Self { dist_file, dist_url,