(cli command.Cli, p *ProjectOptions)
| 109 | } |
| 110 | |
| 111 | func completeScaleArgs(cli command.Cli, p *ProjectOptions) cobra.CompletionFunc { |
| 112 | return func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 113 | completions, directive := completeServiceNames(cli, p)(cmd, args, toComplete) |
| 114 | for i, completion := range completions { |
| 115 | completions[i] = completion + "=" |
| 116 | } |
| 117 | return completions, directive |
| 118 | } |
| 119 | } |
no test coverage detected