We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 103d7a6 commit b4cc318Copy full SHA for b4cc318
pkg/minikube/image/cache.go
@@ -73,7 +73,7 @@ func SaveToDir(images []string, cacheDir string, overwrite bool) error {
73
dst = localpath.SanitizeCacheDir(dst)
74
if err := saveToTarFile(image, dst, overwrite); err != nil {
75
if err == errCacheImageDoesntExist {
76
- out.WarningT("The image you are trying to add {{.imageName}} doesn't exist!", out.V{"imageName": image})
+ out.WarningT("The image '{{.imageName}}' was not found; unable to add it to cache.", out.V{"imageName": image})
77
return nil
78
}
79
return errors.Wrapf(err, "caching image %q", dst)
0 commit comments