We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82e1359 commit 96f5f81Copy full SHA for 96f5f81
1 file changed
crates/lib/src/install.rs
@@ -1796,14 +1796,20 @@ pub(crate) fn setup_composefs_bls_boot(
1796
1797
loader_entries_dir.atomic_write(
1798
// SAFETY: We set sort_key above
1799
- format!("bootc-composefs-{}.conf", bls_config.sort_key.as_ref().unwrap()),
+ format!(
1800
+ "bootc-composefs-{}.conf",
1801
+ bls_config.sort_key.as_ref().unwrap()
1802
+ ),
1803
bls_config.to_string().as_bytes(),
1804
)?;
1805
1806
if let Some(booted_bls) = booted_bls {
1807
1808
- format!("bootc-composefs-{}.conf", booted_bls.sort_key.as_ref().unwrap()),
1809
1810
1811
+ booted_bls.sort_key.as_ref().unwrap()
1812
1813
booted_bls.to_string().as_bytes(),
1814
1815
}
0 commit comments