Skip to content

Commit

Permalink
call correct function for labels remove|set commands
Browse files Browse the repository at this point in the history
  • Loading branch information
coryb committed Sep 3, 2017
1 parent 4b60313 commit ad1a62a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/jira/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,11 @@ func main() {
},
jiracli.CommandRegistry{
Command: "labels set",
Entry: jiracmd.CmdLabelsAddRegistry(o),
Entry: jiracmd.CmdLabelsSetRegistry(o),
},
jiracli.CommandRegistry{
Command: "labels remove",
Entry: jiracmd.CmdLabelsAddRegistry(o),
Entry: jiracmd.CmdLabelsRemoveRegistry(o),
Aliases: []string{"rm"},
},
jiracli.CommandRegistry{
Expand Down

0 comments on commit ad1a62a

Please sign in to comment.