Skip to content

Commit

Permalink
fix: firmware path
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlma committed Nov 29, 2023
1 parent 1c066c1 commit 33374b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/rugpi-bakery/src/tasks/bake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ pub fn run(args: &Args, task: &BakeTask) -> Anyhow<()> {

match ctx.config.include_firmware {
IncludeFirmware::None => { /* Do not include any firmware. */ }
IncludeFirmware::Pi4 => include_pi4_firmware(&root_dir_path)?,
IncludeFirmware::Pi5 => include_pi5_firmware(&root_dir_path)?,
IncludeFirmware::Pi4 => include_pi4_firmware(ctx.mounted_config.path())?,
IncludeFirmware::Pi5 => include_pi5_firmware(ctx.mounted_config.path())?,
}
Ok(())
}
Expand Down

0 comments on commit 33374b6

Please sign in to comment.