MCPcopy Index your code
hub / github.com/containers/toolbox / createErrorContainerNotFound

Function createErrorContainerNotFound

src/cmd/utils.go:263–271  ·  view source on GitHub ↗
(container string)

Source from the content-addressed store, hash-verified

261}
262
263func 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
273func createErrorDistroWithoutRelease(distro string) error {
274 var builder strings.Builder

Callers 1

runCommandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…