From 91895c8ad45ed2089c4abb2836f9e5bfacc55532 Mon Sep 17 00:00:00 2001 From: Marwan Hawari <59078997+marwanhawari@users.noreply.github.com> Date: Fri, 5 Apr 2024 00:35:56 -0700 Subject: [PATCH] search command uses install not browse (#38) --- cmd/search.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/search.go b/cmd/search.go index 2b1b9e2..8894a35 100644 --- a/cmd/search.go +++ b/cmd/search.go @@ -31,6 +31,6 @@ func Search(cliInput string) { searchResultIndex, _ := stew.Contains(formattedSearchResults, githubProjectName) - Browse(githubSearch.Items[searchResultIndex].FullName) + Install(githubSearch.Items[searchResultIndex].FullName) }