(target *configuration.Target)
| 27 | } |
| 28 | |
| 29 | func checkTargetAndExit(target *configuration.Target) { |
| 30 | if target == nil { |
| 31 | handleIfError(fmt.Errorf("%[1]s is not a target\n\nRun `hoverctl targets create %[1]s`", targetNameFlag)) |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func askForConfirmation(message string) bool { |
| 36 | if force { |
no test coverage detected