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 4c40d10 + d677c6e commit de25cccCopy full SHA for de25ccc
cmd/limactl/shell.go
@@ -41,10 +41,7 @@ func shellAction(clicontext *cli.Context) error {
41
switch clicontext.Args().Get(1) {
42
case "start", "delete", "shell":
43
// `lima start` (alias of `limactl $LIMA_INSTANCE start`) is probably a typo of `limactl start`
44
- logrus.Warnf("Perhaps you meant `limactl %s %s %s`?",
45
- clicontext.Args().Get(1),
46
- clicontext.Args().First(),
47
- strings.Join(clicontext.Args().Slice()[2:], " "))
+ logrus.Warnf("Perhaps you meant `limactl %s`?", strings.Join(clicontext.Args().Slice()[1:], " "))
48
}
49
50
inst, err := store.Inspect(instName)
0 commit comments