Skip to content

Commit

Permalink
Merge pull request #6 from mlcdf/dev
Browse files Browse the repository at this point in the history
fix: duplicate flag in remove cmd
  • Loading branch information
mlcdf authored Dec 10, 2022
2 parents c9d02bb + 98c3f2c commit 7cf926b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/command/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (c *RemoveCommand) Run(args []string) int {

flags.StringVar(&hosting, "hosting", "", "")
flags.StringVar(&domain, "domain", "", "")
flags.BoolVar(&yes, "domain", false, "")
flags.BoolVar(&yes, "yes", false, "")

if err := flags.Parse(args); err != nil {
return c.View.PrintErr(err)
Expand Down

0 comments on commit 7cf926b

Please sign in to comment.