aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-registry/src/installer_executor/filesystem.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart-registry/src/installer_executor/filesystem.rs')
-rw-r--r--crates/mozart-registry/src/installer_executor/filesystem.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/crates/mozart-registry/src/installer_executor/filesystem.rs b/crates/mozart-registry/src/installer_executor/filesystem.rs
index e36006c..185e5b9 100644
--- a/crates/mozart-registry/src/installer_executor/filesystem.rs
+++ b/crates/mozart-registry/src/installer_executor/filesystem.rs
@@ -138,10 +138,8 @@ fn install_from_source(
match source_type {
"git" => {
let process = mozart_vcs::process::ProcessExecutor::new();
- let git_util = mozart_vcs::util::git::GitUtil::new(
- process,
- vendor_dir.join(".cache").join("git"),
- );
+ let git_util =
+ mozart_vcs::util::git::GitUtil::new(process, vendor_dir.join(".cache").join("git"));
let downloader = mozart_vcs::downloader::git::GitDownloader::new(git_util);
use mozart_vcs::downloader::VcsDownloader;
downloader.download(url, reference, &target)?;