(i commandInput, isUpdate bool)
| 139 | } |
| 140 | |
| 141 | func isInputRequired(i commandInput, isUpdate bool) bool { |
| 142 | return !isUpdate && i.GetIsRequired() |
| 143 | } |
| 144 | |
| 145 | func handleInputError(err error) error { |
| 146 | if err == terminal.InterruptErr { |
no test coverage detected