You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: restructure `limactl start --help output for better readability
This commit restructures the help output by:
- Removing the `[limactl create]` prefix clutter from individual flag descriptions
- Organizing flags into "Flags:" and "Flags inherited from `limactl create`:" sections
Signed-off-by: ashwat287 <ashwatpas@gmail.com>
To create an instance "default" from a template "docker", and start it:
86
87
$ limactl start --name=default template://docker
87
-
88
-
'limactl start' also accepts the 'limactl create' flags such as '--set'.
89
-
See the examples in 'limactl create --help'.
90
88
`,
91
89
Short: "Start an instance of Lima",
92
90
Args: WrapArgsError(cobra.MaximumNArgs(1)),
@@ -100,9 +98,111 @@ See the examples in 'limactl create --help'.
100
98
}
101
99
startCommand.Flags().Duration("timeout", instance.DefaultWatchHostAgentEventsTimeout, "Duration to wait for the instance to be running before timing out")
102
100
startCommand.Flags().Bool("progress", false, "Show provision script progress by tailing cloud-init logs")
0 commit comments