aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-vcs/src/driver/git.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart-vcs/src/driver/git.rs')
-rw-r--r--crates/mozart-vcs/src/driver/git.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/mozart-vcs/src/driver/git.rs b/crates/mozart-vcs/src/driver/git.rs
index 43f4ecb..090a5fa 100644
--- a/crates/mozart-vcs/src/driver/git.rs
+++ b/crates/mozart-vcs/src/driver/git.rs
@@ -27,7 +27,7 @@ impl GitDriver {
pub fn new(url: &str, config: DriverConfig) -> Self {
let is_local = Self::is_local_path(url);
let process = ProcessExecutor::new();
- let git_util = GitUtil::new(process, config.cache_dir.join("git"));
+ let git_util = GitUtil::new(process, config.cache_vcs_dir.clone());
Self {
url: url.to_string(),
repo_dir: if is_local {