fixing the spinner to always be the right size

This commit is contained in:
Chris Cochrun 2024-04-12 07:22:59 -05:00
parent 402bc08d52
commit 6177219482
4 changed files with 10 additions and 10 deletions

View file

@ -68,12 +68,12 @@ impl file_helper::FileHelper {
match file_string {
Some(file) => {
let exists = Path::new(&file).exists();
println!("{file} exists? {exists}");
debug!(file, exists);
exists
}
None => {
let exists = Path::new(&file.to_string()).exists();
println!("{file} exists? {exists}");
debug!(?file, exists);
exists
}
}