diff --git a/src/pull.rs b/src/pull.rs index 06290ca..4b69229 100644 --- a/src/pull.rs +++ b/src/pull.rs @@ -352,7 +352,9 @@ pub async fn pull( }; /* Fetch the package: either via git (preferred VCS) or the archive */ - if let Some(ref url) = package_info.preferred_vcs && !force_archive { + if let Some(ref url) = package_info.preferred_vcs + && !force_archive + { // We have found a preferred VCS (git repository) for the package, so // we fetch the package from that repo.