We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2818b54 commit 8661579Copy full SHA for 8661579
internal/boxcli/search.go
@@ -11,10 +11,9 @@ import (
11
12
func searchCmd() *cobra.Command {
13
command := &cobra.Command{
14
- Use: "search <pkg>",
15
- Short: "Search for nix packages",
16
- Args: cobra.ExactArgs(1),
17
- Hidden: true,
+ Use: "search <pkg>",
+ Short: "Search for nix packages",
+ Args: cobra.ExactArgs(1),
18
RunE: func(cmd *cobra.Command, args []string) error {
19
ux.Fwarning(cmd.ErrOrStderr(), "Search is experimental and may not work as expected.\n\n")
20
return searcher.SearchAndPrint(cmd.OutOrStdout(), args[0])
0 commit comments