Skip to content

Commit

Permalink
use cache directory for incomplete marker
Browse files Browse the repository at this point in the history
this was here originally but was mistakenly moved during a refactor

Fixes #1156
  • Loading branch information
jdx committed Dec 13, 2023
1 parent d2b8404 commit 907f17d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ pub trait Plugin: Debug + Send + Sync {
}

fn incomplete_file_path(&self, tv: &ToolVersion) -> PathBuf {
tv.install_path().join("incomplete")
tv.cache_path().join("incomplete")
}
}

Expand Down

0 comments on commit 907f17d

Please sign in to comment.