diff options
Diffstat (limited to 'commands/push.go')
-rw-r--r-- | commands/push.go | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/commands/push.go b/commands/push.go index 4465f561..9b808511 100644 --- a/commands/push.go +++ b/commands/push.go @@ -1,14 +1,14 @@ -package commands +package commands import ( + "errors" "fmt" "github.com/MichaelMure/git-bug/repository" - "errors" ) func push(repo repository.Repo, args []string) error { if len(args) > 1 { - return errors.New("only pushing to one remote at a time is supported") + return errors.New("Only pushing to one remote at a time is supported") } remote := "origin" @@ -27,7 +27,5 @@ var pushCmd = &Command{ Usage: func(arg0 string) { fmt.Printf("Usage: %s push [<remote>]\n", arg0) }, - RunMethod: func(repo repository.Repo, args []string) error { - return push(repo, args) - }, -}
\ No newline at end of file + RunMethod: push, +} |