(cmd *cobra.Command, args []string, toComplete string)
| 144 | } |
| 145 | |
| 146 | func imagesShellComplete(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 147 | if len(args) == 0 { |
| 148 | // show image names |
| 149 | return completion.ImageNames(cmd) |
| 150 | } |
| 151 | return nil, cobra.ShellCompDirectiveNoFileComp |
| 152 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…