diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-12 12:44:46 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-12 12:44:46 +0200 |
commit | c498674718608a1171a4fcef6f26184df7d5fa7b (patch) | |
tree | 9cc53ea07b61d52b12cd5fa3367b25d04bebc150 /commands/pull.go | |
parent | d0443659123f912e9385e27efebe4b7da65aa2f6 (diff) | |
download | git-bug-c498674718608a1171a4fcef6f26184df7d5fa7b.tar.gz |
add the new bug command with a very primitive bug datastructure
Diffstat (limited to 'commands/pull.go')
-rw-r--r-- | commands/pull.go | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/commands/pull.go b/commands/pull.go index 0f6080d4..20009a00 100644 --- a/commands/pull.go +++ b/commands/pull.go @@ -1,14 +1,14 @@ -package commands +package commands import ( + "errors" "fmt" "github.com/MichaelMure/git-bug/repository" - "errors" ) func pull(repo repository.Repo, args []string) error { if len(args) > 1 { - return errors.New("only pulling from one remote at a time is supported") + return errors.New("Only pulling from one remote at a time is supported") } remote := "origin" @@ -27,7 +27,5 @@ var pullCmd = &Command{ Usage: func(arg0 string) { fmt.Printf("Usage: %s pull [<remote>]\n", arg0) }, - RunMethod: func(repo repository.Repo, args []string) error { - return pull(repo, args) - }, -}
\ No newline at end of file + RunMethod: pull, +} |