Skip to content

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-opp committed Apr 1, 2020
1 parent 510971a commit a4d30e3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/builder.rs
Expand Up @@ -477,10 +477,11 @@ impl fmt::Display for CreateBootimageError {
"Could not find required key `{}` in cargo metadata output",
key
),
CreateBootimageError::BootloaderNotFound => {
writeln!(f, "Bootloader dependency not found\n\n\
You need to add a dependency on a crate named `bootloader` in your Cargo.toml.")
}
CreateBootimageError::BootloaderNotFound => writeln!(
f,
"Bootloader dependency not found\n\n\
You need to add a dependency on a crate named `bootloader` in your Cargo.toml."
),
CreateBootimageError::BootloaderInvalid(err) => writeln!(
f,
"The `bootloader` dependency has not the right format: {}",
Expand Down

0 comments on commit a4d30e3

Please sign in to comment.