Skip to content

Commit b4cc318

Browse files
committed
reword warning message
1 parent 103d7a6 commit b4cc318

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/minikube/image/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func SaveToDir(images []string, cacheDir string, overwrite bool) error {
7373
dst = localpath.SanitizeCacheDir(dst)
7474
if err := saveToTarFile(image, dst, overwrite); err != nil {
7575
if err == errCacheImageDoesntExist {
76-
out.WarningT("The image you are trying to add {{.imageName}} doesn't exist!", out.V{"imageName": image})
76+
out.WarningT("The image '{{.imageName}}' was not found; unable to add it to cache.", out.V{"imageName": image})
7777
return nil
7878
}
7979
return errors.Wrapf(err, "caching image %q", dst)

0 commit comments

Comments
 (0)