(cmd *cobra.Command, args []string, toComplete string)
| 536 | } |
| 537 | |
| 538 | func runShellComplete(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 539 | if len(args) == 0 { |
| 540 | return completion.ImageNames(cmd) |
| 541 | } |
| 542 | return nil, cobra.ShellCompDirectiveNoFileComp |
| 543 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…