diff --git a/src/bin/bat/assets.rs b/src/bin/bat/assets.rs index b775a4d9..26d599b2 100644 --- a/src/bin/bat/assets.rs +++ b/src/bin/bat/assets.rs @@ -1,5 +1,6 @@ use std::borrow::Cow; use std::fs; +use std::io; use clap::crate_version; @@ -52,6 +53,14 @@ pub fn assets_from_cache_or_binary(use_custom_assets: bool) -> Result { + println!("skipped (not present)"); + } + Err(err) => { + println!("could not remove the cache file {:?}: {}", &path, err); + } + Ok(_) => println!("okay"), + } }