()
| 16 | } |
| 17 | |
| 18 | func (e *Executor) newPrompter() *input.Prompter { |
| 19 | return &input.Prompter{ |
| 20 | Stdin: e.Stdin, |
| 21 | Stdout: e.Stdout, |
| 22 | Stderr: e.Stderr, |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | // promptDepsVars traverses the dependency tree, collects all missing required |
| 27 | // variables, and prompts for them upfront. This is used for deps which execute |
no outgoing calls
no test coverage detected