fix: remove unneeded or_else cases

This commit is contained in:
Erica Marigold 2023-10-12 04:02:15 -07:00
parent 299a80a2e8
commit 04b43fe44d
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -149,56 +149,9 @@ pub fn discover_script_path_including_lune_dirs(path: &str) -> Result<PathBuf> {
// directories + the home directory for the current user
let res = discover_script_path(format!("lune{MAIN_SEPARATOR}{path}"), false)
.or_else(|_| discover_script_path(format!(".lune{MAIN_SEPARATOR}{path}"), false))
.or_else(|_| {
discover_script_path(
format!("lune{MAIN_SEPARATOR}{path}{MAIN_SEPARATOR}init.lua"),
false,
)
})
.or_else(|_| {
discover_script_path(
format!(".lune{MAIN_SEPARATOR}{path}{MAIN_SEPARATOR}init.lua"),
false,
)
})
.or_else(|_| {
discover_script_path(
format!("lune{MAIN_SEPARATOR}{path}{MAIN_SEPARATOR}init.luau"),
false,
)
})
.or_else(|_| {
discover_script_path(
format!(".lune{MAIN_SEPARATOR}{path}{MAIN_SEPARATOR}init.luau"),
false,
)
})
.or_else(|_| discover_script_path(format!("lune{MAIN_SEPARATOR}{path}"), true))
.or_else(|_| discover_script_path(format!(".lune{MAIN_SEPARATOR}{path}"), true))
.or_else(|_| {
discover_script_path(
format!("lune{MAIN_SEPARATOR}{path}{MAIN_SEPARATOR}init.lua"),
true,
)
})
.or_else(|_| {
discover_script_path(
format!(".lune{MAIN_SEPARATOR}{path}{MAIN_SEPARATOR}init.lua"),
true,
)
})
.or_else(|_| {
discover_script_path(
format!("lune{MAIN_SEPARATOR}{path}{MAIN_SEPARATOR}init.luau"),
true,
)
})
.or_else(|_| {
discover_script_path(
format!(".lune{MAIN_SEPARATOR}{path}{MAIN_SEPARATOR}init.luau"),
true,
)
});
.or_else(|_| discover_script_path(format!(".lune{MAIN_SEPARATOR}{path}"), true));
match res {
// NOTE: The first error message is generally more
// descriptive than the ones for the lune subfolders