func checkMissingManifest()

in container_images/registry-image-forked/commands/check.go [357:363]


func checkMissingManifest(err error) bool {
	if rErr, ok := err.(*transport.Error); ok {
		return rErr.StatusCode == http.StatusNotFound
	}

	return false
}