This commit is contained in:
Tom Alexander
2023-09-06 11:48:24 -04:00
parent 028aeb70aa
commit 400f53e440
4 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,6 @@ impl FileAccessInterface for LocalFileAccessInterface {
.map(PathBuf::as_path)
.map(|pb| pb.join(path))
.unwrap_or_else(|| PathBuf::from(path));
eprintln!("Reading file: {}", final_path.display());
Ok(std::fs::read_to_string(final_path)?)
}
}