Skip to content

Commit

Permalink
Make the firebolt-app-library file non mandatory for bootstrap step (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pkumbh631 authored Dec 13, 2024
1 parent 7d019d8 commit 1139a06
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/main/src/bootstrap/manifest/apps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ fn try_app_library_files() -> Result<Vec<AppLibraryEntry>, RippleError> {
return Ok(al);
}
}
Err(RippleError::BootstrapError)
// Return an empty Vec<AppLibraryEntry>
Ok(Vec::new())
}

fn load_from_env() -> Result<(String, Vec<AppLibraryEntry>), RippleError> {
Expand Down Expand Up @@ -92,6 +93,6 @@ fn load(path: String) -> Result<(String, Vec<AppLibraryEntry>), RippleError> {
}
}
} else {
Err(RippleError::BootstrapError)
Err(RippleError::ParseError)
}
}

0 comments on commit 1139a06

Please sign in to comment.