mirror of
https://github.com/sharkdp/bat
synced 2024-11-16 21:25:56 +00:00
Ignore errors when clearing cache, closes #91
This commit is contained in:
parent
ca865f9d26
commit
b9c780c8c8
@ -209,11 +209,11 @@ fn run() -> Result<()> {
|
||||
assets.save()?;
|
||||
} else if cache_matches.is_present("clear") {
|
||||
print!("Clearing theme set cache ... ");
|
||||
fs::remove_file(theme_set_path())?;
|
||||
fs::remove_file(theme_set_path()).ok();
|
||||
println!("okay");
|
||||
|
||||
print!("Clearing syntax set cache ... ");
|
||||
fs::remove_file(syntax_set_path())?;
|
||||
fs::remove_file(syntax_set_path()).ok();
|
||||
println!("okay");
|
||||
} else if cache_matches.is_present("config-dir") {
|
||||
println!("{}", config_dir());
|
||||
|
Loading…
Reference in New Issue
Block a user