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 7459f45 commit 9f2c6d7Copy full SHA for 9f2c6d7
cmd/limactl/shell.go
@@ -54,7 +54,10 @@ func shellAction(clicontext *cli.Context) error {
54
switch clicontext.Args().Get(1) {
55
case "start", "delete", "shell":
56
// `lima start` (alias of `limactl $LIMA_INSTANCE start`) is probably a typo of `limactl start`
57
- logrus.Warnf("Perhaps you meant `limactl %s`?", strings.Join(clicontext.Args().Slice(), " "))
+ logrus.Warnf("Perhaps you meant `limactl %s %s %s`?",
58
+ clicontext.Args().Get(1),
59
+ clicontext.Args().First(),
60
+ strings.Join(clicontext.Args().Slice()[2:], " "))
61
}
62
63
hostHome, err := os.UserHomeDir()
0 commit comments