[cargo-espflash]: Fix -s collision (#731)

* fix: `-s` collision

* docs: Update changelog
This commit is contained in:
Sergio Gasquez Arcos
2025-01-28 14:44:04 +01:00
committed by GitHub
parent c9183ffaf3
commit 30953a70b6
2 changed files with 2 additions and 2 deletions

View File

@@ -12,8 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Fixed
- Update the app image SHA in the correct location for padded images (#715)
- Fix `-s` argument collision (#731)
### Removed

View File

@@ -53,7 +53,7 @@ enum CargoSubcommand {
subcommand: Commands,
/// Do not check for updates
#[clap(short, long, global = true, action)]
#[clap(short = 'S', long, global = true, action)]
skip_update_check: bool,
},
}