From bd10a37c2ac7a5cf00e54057a67bbc82187a07ea Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Sun, 11 Jan 2026 22:19:46 +0100 Subject: [PATCH] pull: fmt --- src/pull.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.