diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-19 12:30:25 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-19 12:36:01 +0200 |
commit | 7f5922f905831a85ffee4c9226b65715899ba758 (patch) | |
tree | d18a29a2ec13706efa7f5e9efc9515a92cf4513d /commands/pull.go | |
parent | 459bb8747d9e84493b8d04a3172e6758452a75b9 (diff) | |
download | git-bug-7f5922f905831a85ffee4c9226b65715899ba758.tar.gz |
rework all the commands to use cobra as a parser
Diffstat (limited to 'commands/pull.go')
-rw-r--r-- | commands/pull.go | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/commands/pull.go b/commands/pull.go index 15d832fe..6e8acf50 100644 --- a/commands/pull.go +++ b/commands/pull.go @@ -4,10 +4,10 @@ import ( "errors" "fmt" "github.com/MichaelMure/git-bug/bug" - "github.com/MichaelMure/git-bug/repository" + "github.com/spf13/cobra" ) -func runPull(repo repository.Repo, args []string) error { +func runPull(cmd *cobra.Command, args []string) error { if len(args) > 1 { return errors.New("Only pulling from one remote at a time is supported") } @@ -82,8 +82,12 @@ func runPull(repo repository.Repo, args []string) error { } // showCmd defines the "push" subcommand. -var pullCmd = &Command{ - Description: "Pull bugs update from a git remote", - Usage: "[<remote>]", - RunMethod: runPull, +var pullCmd = &cobra.Command{ + Use: "pull [<remote>]", + Short: "Pull bugs update from a git remote", + RunE: runPull, +} + +func init() { + rootCmd.AddCommand(pullCmd) } |