Skip to content

Commit 3b864eb

Browse files
cgwaltersjeckersb
authored andcommitted
install: Fix cargo fmt
Signed-off-by: Colin Walters <[email protected]>
1 parent 212f3e9 commit 3b864eb

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
@@ -1796,14 +1796,20 @@ pub(crate) fn setup_composefs_bls_boot(
17961796

17971797
loader_entries_dir.atomic_write(
17981798
// SAFETY: We set sort_key above
1799-
format!("bootc-composefs-{}.conf", bls_config.sort_key.as_ref().unwrap()),
1799+
format!(
1800+
"bootc-composefs-{}.conf",
1801+
bls_config.sort_key.as_ref().unwrap()
1802+
),
18001803
bls_config.to_string().as_bytes(),
18011804
)?;
18021805

18031806
if let Some(booted_bls) = booted_bls {
18041807
loader_entries_dir.atomic_write(
18051808
// SAFETY: We set sort_key above
1806-
format!("bootc-composefs-{}.conf", booted_bls.sort_key.as_ref().unwrap()),
1809+
format!(
1810+
"bootc-composefs-{}.conf",
1811+
booted_bls.sort_key.as_ref().unwrap()
1812+
),
18071813
booted_bls.to_string().as_bytes(),
18081814
)?;
18091815
}

0 commit comments

Comments
 (0)