(cmd *cobra.Command, args []string, toComplete string)
| 145 | } |
| 146 | |
| 147 | func pushShellComplete(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 148 | // show image names |
| 149 | return completion.ImageNames(cmd) |
| 150 | } |
| 151 | |
| 152 | func signOptions(cmd *cobra.Command) (opt types.ImageSignOptions, err error) { |
| 153 | if opt.Provider, err = cmd.Flags().GetString("sign"); err != nil { |
nothing calls this directly
no test coverage detected
searching dependent graphs…