mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 01:50:55 +01:00
eliminate unnecessary checks for files
This commit is contained in:
parent
7f07c9d107
commit
76da13d99e
2 changed files with 7 additions and 8 deletions
|
@ -156,12 +156,6 @@ impl RequireContext {
|
|||
}
|
||||
}
|
||||
|
||||
if !fs::try_exists(&path_abs).await? {
|
||||
return Err(RequireError::InvalidRequire(
|
||||
path_rel.to_string_lossy().to_string(),
|
||||
));
|
||||
}
|
||||
|
||||
let content = fs::read_to_string(&path_abs).await?;
|
||||
let thread = lua
|
||||
.load(&content)
|
||||
|
|
|
@ -84,9 +84,14 @@ impl RequireAlias {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
# Errors
|
||||
|
||||
* when `serde_json` fails to deserialize content of the file
|
||||
|
||||
*/
|
||||
async fn parse_luaurc(_: &mlua::Lua, path: &PathBuf) -> Result<Option<Luaurc>, LuaurcError> {
|
||||
if fs::try_exists(path).await? {
|
||||
let content = fs::read(path).await?;
|
||||
if let Ok(content) = fs::read(path).await {
|
||||
serde_json::from_slice(&content)
|
||||
.map(Some)
|
||||
.map_err(|err| LuaurcError::FilaedToParse(path.clone(), err))
|
||||
|
|
Loading…
Add table
Reference in a new issue