Cleanup the weird-looking comment indentation

pull/10807/head
Anders F Björklund 2021-03-22 20:54:47 +01:00
parent fd4a62f77f
commit 1ab1eada29
1 changed files with 1 additions and 1 deletions

View File

@ -115,9 +115,9 @@ var loadImageCmd = &cobra.Command{
if err := machine.CacheAndLoadImages(args, []*config.Profile{profile}); err != nil {
exit.Error(reason.GuestImageLoad, "Failed to load image", err)
}
} else if local {
// Load images from local files, without doing any caching or checks in container runtime
// This is similar to tarball.Image but it is done by the container runtime in the cluster.
} else if local {
if err := machine.DoLoadImages(args, []*config.Profile{profile}, ""); err != nil {
exit.Error(reason.GuestImageLoad, "Failed to load image", err)
}