diff --git a/crates/util/src/github.rs b/crates/util/src/github.rs index 7e2578214e6bd7a95bef41ed4136686c296d8f2e..2e1273f0dbb860b018b4122d728ea95641775c6c 100644 --- a/crates/util/src/github.rs +++ b/crates/util/src/github.rs @@ -111,7 +111,7 @@ pub async fn github_release_with_tag( "GitHub API response text: {:?}", String::from_utf8_lossy(body.as_slice()) ); - return Err(anyhow!("error deserializing latest release")); + Err(anyhow!("error deserializing latest release")) } } }