Skip to content

Commit

Permalink
feat: add some more description
Browse files Browse the repository at this point in the history
Signed-off-by: Kasper J. Hermansen <[email protected]>
  • Loading branch information
kjuulh committed Jan 26, 2024
1 parent 9b72a7a commit c75a15a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions cmd/ext.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ func newExtCmd() *cobra.Command {

func newExtInstallCmd(extManager *extensions.ExtensionsManager) *cobra.Command {
cmd := &cobra.Command{
Use: "install",
Use: "install",
Long: "Install ensures that extensions already known about are downloaded and available",
RunE: func(cmd *cobra.Command, args []string) error {
return nil
},
Expand All @@ -35,7 +36,8 @@ func newExtInstallCmd(extManager *extensions.ExtensionsManager) *cobra.Command {

func newExtUpdateCmd(extManager *extensions.ExtensionsManager) *cobra.Command {
cmd := &cobra.Command{
Use: "update",
Use: "update",
Long: "Update will fetch the latest version of the extensions from the given registry",
RunE: func(cmd *cobra.Command, args []string) error {
return nil
},
Expand All @@ -46,7 +48,8 @@ func newExtUpdateCmd(extManager *extensions.ExtensionsManager) *cobra.Command {

func newExtInitCmd(extManager *extensions.ExtensionsManager) *cobra.Command {
cmd := &cobra.Command{
Use: "init",
Use: "init",
Long: "init will create an initial extensions repository",
RunE: func(cmd *cobra.Command, args []string) error {
return nil
},
Expand Down

0 comments on commit c75a15a

Please sign in to comment.