Fix missing directory error

This commit is contained in:
Someon1e 2024-04-11 16:46:06 +01:00
parent ba9ebb2a53
commit 0a2504dbda
No known key found for this signature in database

View file

@ -124,7 +124,10 @@ 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>() {
err.kind() == ErrorKind::NotFound
matches!(
err.kind(),
ErrorKind::NotFound | ErrorKind::PermissionDenied
)
} else {
false
}