Fix errors on non-windows

This commit is contained in:
Someon1e 2024-04-11 17:17:02 +01:00
parent e37e425a58
commit 877fd701c6
No known key found for this signature in database

View file

@ -1,4 +1,3 @@
use std::io::ErrorKind;
use std::path::{Path, PathBuf};
use mlua::prelude::*;
@ -123,14 +122,7 @@ fn append_extension(path: impl Into<PathBuf>, ext: &'static str) -> PathBuf {
fn is_file_not_found_error(err: &LuaError) -> bool {
if let ExternalError(err) = err {
if let Some(err) = err.as_ref().downcast_ref::<std::io::Error>() {
matches!(
err.kind(),
ErrorKind::NotFound | ErrorKind::PermissionDenied
)
} else {
false
}
err.as_ref().downcast_ref::<std::io::Error>().is_some()
} else {
false
}