File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
### Fixed
13
13
14
+ - Explicitly set ` bin_name ` attribute for ` cargo-espflash ` (#432 )
15
+
14
16
### Changed
15
17
16
18
### Removed
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ cargo install cargo-espflash --features=raspberry
60
60
``` text
61
61
Cargo subcommand for flashing Espressif devices
62
62
63
- Usage: cargo-espflash espflash <COMMAND>
63
+ Usage: cargo espflash <COMMAND>
64
64
65
65
Commands:
66
66
board-info Establish a connection with a target device
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ mod error;
32
32
mod package_metadata;
33
33
34
34
#[ derive( Debug , Parser ) ]
35
- #[ clap( version, propagate_version = true ) ]
35
+ #[ clap( bin_name = "cargo" , version, propagate_version = true ) ]
36
36
struct Cli {
37
37
#[ clap( subcommand) ]
38
38
subcommand : CargoSubcommand ,
You can’t perform that action at this time.
0 commit comments