This commit is contained in:
Thomas Forgione 2020-10-26 17:58:20 +01:00
parent d0c0881271
commit b4cf2a63d6
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ fn main_result() -> Result<()> {
info!("{}", "done!");
// Append to cache
let mut cache = Cache::read()?;
let mut cache = Cache::read_or_generate();
cache.append(path.display().to_string());
cache.write()?;