We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a7ac13 commit e2bb9ceCopy full SHA for e2bb9ce
1 file changed
crates/lib/src/install.rs
@@ -1772,14 +1772,20 @@ pub(crate) fn setup_composefs_bls_boot(
1772
1773
loader_entries_dir.atomic_write(
1774
// SAFETY: We set sort_key above
1775
- format!("bootc-composefs-{}.conf", bls_config.sort_key.as_ref().unwrap()),
+ format!(
1776
+ "bootc-composefs-{}.conf",
1777
+ bls_config.sort_key.as_ref().unwrap()
1778
+ ),
1779
bls_config.to_string().as_bytes(),
1780
)?;
1781
1782
if let Some(booted_bls) = booted_bls {
1783
1784
- format!("bootc-composefs-{}.conf", booted_bls.sort_key.as_ref().unwrap()),
1785
1786
1787
+ booted_bls.sort_key.as_ref().unwrap()
1788
1789
booted_bls.to_string().as_bytes(),
1790
1791
}
0 commit comments