(extension string)
| 1099 | } |
| 1100 | |
| 1101 | func extensionError(extension string) error { |
| 1102 | errMsg := wski18n.T( |
| 1103 | "'{{.name}}' is not a supported action runtime", |
| 1104 | map[string]interface{}{ |
| 1105 | "name": extension, |
| 1106 | }) |
| 1107 | |
| 1108 | return nonNestedError(errMsg) |
| 1109 | } |
| 1110 | |
| 1111 | func javaEntryError() error { |
| 1112 | errMsg := wski18n.T("Java actions require --main to specify the fully-qualified name of the main class") |
no test coverage detected