diff options
Diffstat (limited to 'commands/bridge_pull.go')
-rw-r--r-- | commands/bridge_pull.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/commands/bridge_pull.go b/commands/bridge_pull.go index c7a22d6d..2edabfaf 100644 --- a/commands/bridge_pull.go +++ b/commands/bridge_pull.go @@ -3,11 +3,12 @@ package commands import ( "time" + "github.com/spf13/cobra" + "github.com/MichaelMure/git-bug/bridge" "github.com/MichaelMure/git-bug/bridge/core" "github.com/MichaelMure/git-bug/cache" "github.com/MichaelMure/git-bug/util/interrupt" - "github.com/spf13/cobra" ) func runBridgePull(cmd *cobra.Command, args []string) error { @@ -44,6 +45,7 @@ var bridgePullCmd = &cobra.Command{ Short: "Pull updates.", PreRunE: loadRepo, RunE: runBridgePull, + Args: cobra.MaximumNArgs(1), } func init() { |