Skip to content

Commit eec65d7

Browse files
committed
Fix clippy warnings
1 parent 80940bf commit eec65d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pub async fn build() -> Result<()> {
8585
}
8686

8787
async fn fetch_and_verify_source(client: &Client, source: &Source, info: &Info) -> Result<PathBuf> {
88-
let url: Url = replace_vars(&source.url, &info)?.as_ref().try_into()?;
88+
let url: Url = replace_vars(&source.url, info)?.as_ref().try_into()?;
8989

9090
let target_path = PathBuf::from(url.path_segments().unwrap().last().unwrap());
9191

0 commit comments

Comments
 (0)