Set cache_dir on MacOS to ~/.cache/bat/

This commit is contained in:
Lavi 2019-02-04 12:58:30 -05:00 committed by David Peter
parent 6a8e4757b7
commit 49af3e854b
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ impl BatProjectDirs {
#[cfg(target_os = "macos")]
let cache_dir = match dirs_rs::home_dir() {
Some(mut d) => {
d.push(".config/bat/cache");
d.push(".cache/bat");
d
}
None => return None,