From 11d13404176bfce9ba54ffc1ea0b7c325e038e08 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Thu, 6 Oct 2022 12:34:10 +0000 Subject: [PATCH] =?UTF-8?q?perf:=20=E2=9A=A1=EF=B8=8F=20Install=20openocd?= =?UTF-8?q?=20only=20for=20windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/toolchain/espidf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/toolchain/espidf.rs b/src/toolchain/espidf.rs index 78b55b3..39e11b5 100644 --- a/src/toolchain/espidf.rs +++ b/src/toolchain/espidf.rs @@ -102,7 +102,7 @@ impl EspIdfRepo { tools.push(espidf::Tools::cmake()?); } } - // Todo: check if they are needed + #[cfg(windows)] subtools.push("openocd-esp32".to_string()); #[cfg(windows)] subtools.push("idf-exe".to_string());