From 7ac3775b3ca3505f67732d859b07a8c633ff4336 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Tue, 20 Sep 2022 11:44:51 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=E2=9A=A1=EF=B8=8F=20Update=20default?= =?UTF-8?q?=20value=20of=20build=5Ftarget?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ce97986..2636c34 100644 --- a/src/main.rs +++ b/src/main.rs @@ -49,7 +49,7 @@ pub enum SubCommand { #[derive(Debug, Parser)] pub struct InstallOpts { /// Comma or space separated list of targets [esp32,esp32s2,esp32s3,esp32c3,all]. - #[clap(short = 'b', long, default_value = "esp32,esp32s2,esp32s3")] + #[clap(short = 'b', long, default_value = "all")] pub build_target: String, /// Path to .cargo. #[clap(short = 'c', long, required = false)]