fix(actions): if edera action returns successfully, an intended unreachable line could be reached

This commit is contained in:
2025-10-24 19:51:08 -07:00
parent e243228f15
commit 6cd502ef18

View File

@@ -64,6 +64,7 @@ pub fn execute(context: Rc<SproutContext>, name: impl AsRef<str>) -> Result<()>
return Ok(()); return Ok(());
} else if let Some(edera) = &action.edera { } else if let Some(edera) = &action.edera {
edera::edera(context.clone(), edera)?; edera::edera(context.clone(), edera)?;
return Ok(());
} }
#[cfg(feature = "splash")] #[cfg(feature = "splash")]