Skip to content

Commit

Permalink
lib: Run cargo fmt
Browse files Browse the repository at this point in the history
Same as containers#547, but I'm not sure how this instance wasn't caught
previously.

Signed-off-by: John Eckersberg <[email protected]>
  • Loading branch information
jeckersb committed May 21, 2024
1 parent 559aca7 commit 0f8f841
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/src/bootloader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@ pub(crate) fn install_via_bootupd(
.into_iter()
.chain(verbose)
.chain(bootupd_opts.iter().copied().flatten())
.chain([
"--device",
device.as_str(),
rootfs.as_str(),
]);
.chain(["--device", device.as_str(), rootfs.as_str()]);
Task::new("Running bootupctl to install bootloader", "bootupctl")
.args(args)
.verbose()
Expand Down

0 comments on commit 0f8f841

Please sign in to comment.