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 2f76568 commit 0ef3724Copy full SHA for 0ef3724
src/bin/cargo-bootimage.rs
@@ -4,7 +4,10 @@ use bootimage::{
4
builder::Builder,
5
help,
6
};
7
-use std::{env, path::{PathBuf, Path}};
+use std::{
8
+ env,
9
+ path::{Path, PathBuf},
10
+};
11
12
pub fn main() -> Result<()> {
13
let mut raw_args = env::args();
src/builder/error.rs
@@ -100,7 +100,7 @@ pub enum BootloaderError {
100
#[error("Could not find package for binary `{bin_name}` in cargo metadata output")]
101
KernelBinPackageNotFound {
102
/// The name of the kernel binary
103
- bin_name: String
+ bin_name: String,
104
},
105
/// Could not find some required information in the `cargo metadata` output
106
#[error("Could not find required key `{key}` in cargo metadata output")]
0 commit comments