Run runs the command logic
(_ *cobra.Command, args []string)
| 21 | |
| 22 | // Run runs the command logic |
| 23 | func (cmd *GitCredentials) Run(_ *cobra.Command, args []string) error { |
| 24 | if len(args) == 0 { |
| 25 | return nil |
| 26 | } else if args[0] != "get" { |
| 27 | return nil |
| 28 | } |
| 29 | |
| 30 | return runProxyCommand([]string{"git-credentials", "credential", "fill"}) |
| 31 | } |
nothing calls this directly
no test coverage detected