Skip to content

Commit 9aa55dc

Browse files
authored
fix: remove conflicting flag from marketplace delete command (#143)
1 parent b77b00c commit 9aa55dc

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2828
- update uuid to 1.5.0
2929
- update exp to v0.0.0-20231219180239-dc181d75b848
3030

31+
### Fixed
32+
33+
- remove conflicting shortand flag `-v` from `miactl marketplace delete` command
34+
3135
## [0.10.0] - 2023-12-20
3236

3337
### BREAKING

internal/clioptions/clioptions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ func (o *CLIOptions) AddMarketplaceItemObjectIDFlag(flags *pflag.FlagSet) (flagN
200200

201201
func (o *CLIOptions) AddMarketplaceVersionFlag(flags *pflag.FlagSet) (flagName string) {
202202
flagName = "version"
203-
flags.StringVarP(&o.MarketplaceItemVersion, flagName, "v", "", "The version of the Marketplace item")
203+
flags.StringVarP(&o.MarketplaceItemVersion, flagName, "", "", "The version of the Marketplace item")
204204
return
205205
}
206206

0 commit comments

Comments
 (0)