File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -329,17 +329,17 @@ impl fmt::Display for BuildKernelError {
329
329
writeln ! ( f, "Could not find kernel package in cargo metadata, required for retrieving kernel crate name" )
330
330
}
331
331
BuildKernelError :: Io { message, error} => {
332
- writeln ! ( f, "I/O error: {}: {}" , message, error)
332
+ writeln ! ( f, "I/O error: {}:\n {}" , message, error)
333
333
}
334
334
BuildKernelError :: XbuildNotFound => {
335
335
writeln ! ( f, "Failed to run `cargo xbuild`. Perhaps it is not installed?\n \
336
336
Run `cargo install cargo-xbuild` to install it.")
337
337
}
338
338
BuildKernelError :: XbuildFailed { stderr} => {
339
- writeln ! ( f, "Kernel build failed: {}" , String :: from_utf8_lossy( stderr) )
339
+ writeln ! ( f, "Kernel build failed:\n {}" , String :: from_utf8_lossy( stderr) )
340
340
}
341
341
BuildKernelError :: CargoConfigInvalid { path, error} => {
342
- writeln ! ( f, "Failed to read cargo config at {}: {}" , path. display( ) , error)
342
+ writeln ! ( f, "Failed to read cargo config at {}:\n {}" , path. display( ) , error)
343
343
} ,
344
344
}
345
345
}
You can’t perform that action at this time.
0 commit comments