From 993b90035237dffd929470b7f107536fc50e9f4c Mon Sep 17 00:00:00 2001 From: GingerAvalanche Date: Thu, 1 Aug 2024 12:41:17 -0700 Subject: [PATCH] No need to borrow this reference --- crates/uk-manager/src/deploy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uk-manager/src/deploy.rs b/crates/uk-manager/src/deploy.rs index 8ab64e9..3d8f43e 100644 --- a/crates/uk-manager/src/deploy.rs +++ b/crates/uk-manager/src/deploy.rs @@ -227,7 +227,7 @@ impl Manager { std::fs::create_dir_all(&config.output) .context("Output dir does not exist and could not be created")?; } - if !is_symlink(&base_path) || !is_symlink(dlc_path) { + if !is_symlink(base_path) || !is_symlink(dlc_path) { if !is_symlink(base_path) { if base_path.exists() { log::warn!("Removing old stuff from base game deploy folder");