From a8a57595dcf39d1cda20e1592f197b28cd421127 Mon Sep 17 00:00:00 2001 From: vilmibm Date: Wed, 25 Mar 2020 11:26:58 -0500 Subject: [PATCH] explicitly ignore readme fetching error --- command/repo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/repo.go b/command/repo.go index c4c9db384..cfb762767 100644 --- a/command/repo.go +++ b/command/repo.go @@ -449,7 +449,7 @@ func repoView(cmd *cobra.Command, args []string) error { return err } - readmeContent, err := api.RepositoryReadme(apiClient, fullName) + readmeContent, _ := api.RepositoryReadme(apiClient, fullName) if readmeContent == "" { readmeContent = utils.Gray("No README provided")