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 fb5e9cb commit 66b2c87Copy full SHA for 66b2c87
mithril-client-cli/src/utils/github_release_retriever/reqwest.rs
@@ -35,8 +35,9 @@ impl ReqwestGitHubApiClient {
35
reqwest::StatusCode::OK => {}
36
status => {
37
return Err(anyhow!(
38
- "GitHub API request failed with status code: {}",
39
- status
+ "GitHub API request failed with status code '{}': {}",
+ status,
40
+ response.text().await.unwrap()
41
));
42
}
43
0 commit comments