Skip to content

Commit e2bb9ce

Browse files
committed
install: Fix cargo fmt
Signed-off-by: Colin Walters <[email protected]>
1 parent 1a7ac13 commit e2bb9ce

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

crates/lib/src/install.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1772,14 +1772,20 @@ pub(crate) fn setup_composefs_bls_boot(
17721772

17731773
loader_entries_dir.atomic_write(
17741774
// SAFETY: We set sort_key above
1775-
format!("bootc-composefs-{}.conf", bls_config.sort_key.as_ref().unwrap()),
1775+
format!(
1776+
"bootc-composefs-{}.conf",
1777+
bls_config.sort_key.as_ref().unwrap()
1778+
),
17761779
bls_config.to_string().as_bytes(),
17771780
)?;
17781781

17791782
if let Some(booted_bls) = booted_bls {
17801783
loader_entries_dir.atomic_write(
17811784
// SAFETY: We set sort_key above
1782-
format!("bootc-composefs-{}.conf", booted_bls.sort_key.as_ref().unwrap()),
1785+
format!(
1786+
"bootc-composefs-{}.conf",
1787+
booted_bls.sort_key.as_ref().unwrap()
1788+
),
17831789
booted_bls.to_string().as_bytes(),
17841790
)?;
17851791
}

0 commit comments

Comments
 (0)