From 826c35d0d80084a9f749aa81374537d37cc7d7f0 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Mon, 19 Sep 2022 10:51:48 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=8E=A8=20Install=20ldproxy=20when?= =?UTF-8?q?=20installing=20espidf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index a19fe17..8b6b53c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -152,8 +152,7 @@ fn install(args: InstallOpts) -> Result<()> { "source {}/export.sh", get_espidf_path(&espidf_version) )); - // TODO: Install ldproxy - install_extra_crate("ldproxy")?; + rust_toolchain.install_extra_crate("ldproxy")?; } else { info!("{} Installing gcc for build targets", emoji::WRENCH); exports.extend(install_gcc_targets(targets).unwrap().iter().cloned());