fix: double lookup with same values

This commit is contained in:
Erica Marigold 2023-10-11 08:30:51 -07:00 committed by GitHub
parent 60098d519a
commit 299a80a2e8
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,12 +38,8 @@ pub async fn find_lune_scripts(in_home_dir: bool) -> Result<Vec<(String, String)
bail!("Failed to cast path to string slice.")
};
let init_file_path = match (
discover_script_path(dir_path, in_home_dir),
discover_script_path(dir_path, in_home_dir),
) {
(Ok(lune_init), _) => lune_init,
(_, Ok(dotlune_init)) => dotlune_init,
let init_file_path = match discover_script_path(dir_path, in_home_dir) {
Ok(init_file) => init_file,
_ => continue,
};