We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510971a commit a4d30e3Copy full SHA for a4d30e3
src/builder.rs
@@ -477,10 +477,11 @@ impl fmt::Display for CreateBootimageError {
477
"Could not find required key `{}` in cargo metadata output",
478
key
479
),
480
- CreateBootimageError::BootloaderNotFound => {
481
- writeln!(f, "Bootloader dependency not found\n\n\
482
- You need to add a dependency on a crate named `bootloader` in your Cargo.toml.")
483
- }
+ 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."
484
+ ),
485
CreateBootimageError::BootloaderInvalid(err) => writeln!(
486
f,
487
"The `bootloader` dependency has not the right format: {}",
0 commit comments