(container string)
| 261 | } |
| 262 | |
| 263 | func createErrorContainerNotFound(container string) error { |
| 264 | var builder strings.Builder |
| 265 | fmt.Fprintf(&builder, "container %s not found\n", container) |
| 266 | fmt.Fprintf(&builder, "Use the 'create' command to create a Toolbx.\n") |
| 267 | fmt.Fprintf(&builder, "Run '%s --help' for usage.", executableBase) |
| 268 | |
| 269 | errMsg := builder.String() |
| 270 | return errors.New(errMsg) |
| 271 | } |
| 272 | |
| 273 | func createErrorDistroWithoutRelease(distro string) error { |
| 274 | var builder strings.Builder |
no outgoing calls
no test coverage detected
searching dependent graphs…