diff --git a/updater/library/src/updater.rs b/updater/library/src/updater.rs index 715c6984..b8d0851a 100644 --- a/updater/library/src/updater.rs +++ b/updater/library/src/updater.rs @@ -172,8 +172,18 @@ fn get_base_path(original_lib_app_paths: &Vec) -> anyhow::Result { + return Ok(path); + } + Ok(false) => { + info!("File does not exist: {:?}", path); + continue; + } + Err(err) => { + info!("Failed to check for file: {:?}, err: {err}", path); + continue; + } } } return Err(UpdateError::InvalidState("No base file found".to_string()).into());