Skip to content

Commit 8661579

Browse files
authored
[search] unhide command (#1020)
## Summary TSIA ## How was it tested?
1 parent 2818b54 commit 8661579

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

internal/boxcli/search.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ import (
1111

1212
func searchCmd() *cobra.Command {
1313
command := &cobra.Command{
14-
Use: "search <pkg>",
15-
Short: "Search for nix packages",
16-
Args: cobra.ExactArgs(1),
17-
Hidden: true,
14+
Use: "search <pkg>",
15+
Short: "Search for nix packages",
16+
Args: cobra.ExactArgs(1),
1817
RunE: func(cmd *cobra.Command, args []string) error {
1918
ux.Fwarning(cmd.ErrOrStderr(), "Search is experimental and may not work as expected.\n\n")
2019
return searcher.SearchAndPrint(cmd.OutOrStdout(), args[0])

0 commit comments

Comments
 (0)