mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-06-15 15:16:37 +00:00
Arc<Self> needs a clone
This commit is contained in:
parent
3b58930c4a
commit
ad60a0a197
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ async fn resolve_inner(
|
||||||
{
|
{
|
||||||
Ok(bin_files) => {
|
Ok(bin_files) => {
|
||||||
if !bin_files.is_empty() {
|
if !bin_files.is_empty() {
|
||||||
fetcher.report_to_upstream();
|
fetcher.clone().report_to_upstream();
|
||||||
return Ok(Resolution::Fetch(Box::new(ResolutionFetch {
|
return Ok(Resolution::Fetch(Box::new(ResolutionFetch {
|
||||||
fetcher: fetcher.clone(),
|
fetcher: fetcher.clone(),
|
||||||
new_version: package_info.version,
|
new_version: package_info.version,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue