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.
2 parents f35b3f1 + ad64c0c commit 9a5ca0dCopy full SHA for 9a5ca0d
cmd/limactl/edit.go
@@ -43,8 +43,7 @@ func editAction(cmd *cobra.Command, args []string) error {
43
inst, err := store.Inspect(instName)
44
if err != nil {
45
if errors.Is(err, os.ErrNotExist) {
46
- logrus.Infof("Instance %q not found", instName)
47
- return nil
+ return fmt.Errorf("Instance %q not found", instName)
48
}
49
return err
50
0 commit comments