[src/file_utils.rs] Don't print to stderr in file_exists.

This commit is contained in:
Joe Thornber 2020-06-15 12:48:19 +01:00
parent 0d2b49aae7
commit 7d625eb6ff

View File

@ -23,7 +23,6 @@ pub fn file_exists(path: &str) -> bool {
_ => {
// FIXME: assuming all errors indicate the file doesn't
// exist.
eprintln!("couldn't stat '{}'", path);
false
}
}