Commit 82b4ea1e authored by Cristian Maglie's avatar Cristian Maglie

Fixed description for list command

parent 122bca5b
...@@ -32,11 +32,8 @@ func initListCommand() *cobra.Command { ...@@ -32,11 +32,8 @@ func initListCommand() *cobra.Command {
listCommand := &cobra.Command{ listCommand := &cobra.Command{
Use: "list", Use: "list",
Short: "Shows a list of all installed libraries.", Short: "Shows a list of all installed libraries.",
Long: "Shows a list of all installed libraries.\n" + Long: "Shows a list of all installed libraries.",
"Can be used with -v (or --verbose) flag (up to 2 times) to have longer output.", Example: " " + commands.AppName + " lib list",
Example: "" +
" " + commands.AppName + " lib list # to show all installed library names.\n" +
" " + commands.AppName + " lib list -v # to show more details.",
Args: cobra.NoArgs, Args: cobra.NoArgs,
Run: runListCommand, Run: runListCommand,
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment