mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 17:30:17 +00:00
instead of a panic, fail with a specific error if there is no entry to boot
This commit is contained in:
@@ -96,9 +96,9 @@ fn main() -> Result<()> {
|
||||
|
||||
phase(context.clone(), &config.phases.late).context("unable to execute late phase")?;
|
||||
|
||||
let index = 1;
|
||||
|
||||
let (context, entry) = &final_entries[index - 1];
|
||||
let Some((context, entry)) = final_entries.first() else {
|
||||
bail!("no entries found");
|
||||
};
|
||||
|
||||
for action in &entry.actions {
|
||||
let action = context.stamp(action);
|
||||
|
||||
Reference in New Issue
Block a user