Skip to content

Commit

Permalink
fix(cli): Hide fetch command until rework (#975)
Browse files Browse the repository at this point in the history
Reviewed-by: Alexander Jung <alex@unikraft.io>
Approved-by: Alexander Jung <alex@unikraft.io>
  • Loading branch information
nderjung committed Nov 5, 2023
2 parents 1b061f7 + 154823f commit e92446a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions internal/cli/kraft/fetch/fetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ func Fetch(ctx context.Context, opts *FetchOptions, args ...string) error {

func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&FetchOptions{}, cobra.Command{
Short: "Fetch Unikraft unikernel dependencies",
Use: "fetch [FLAGS] [DIR]",
Args: cmdfactory.MaxDirArgs(1),
Short: "Fetch Unikraft unikernel dependencies",
Hidden: true,
Use: "fetch [FLAGS] [DIR]",
Args: cmdfactory.MaxDirArgs(1),
Long: heredoc.Docf(`
Fetch the dependencies of a unikernel.
Expand Down

0 comments on commit e92446a

Please sign in to comment.