Skip to content

Commit

Permalink
No need to borrow this reference
Browse files Browse the repository at this point in the history
  • Loading branch information
GingerAvalanche committed Aug 7, 2024
1 parent a8f5442 commit 993b900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uk-manager/src/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 993b900

Please sign in to comment.