File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 16
16
image_name : ' ubuntu-16.04'
17
17
rustup_toolchain : stable
18
18
mac :
19
- image_name : ' macos -10.13 '
19
+ image_name : ' macOS -10.15 '
20
20
rustup_toolchain : stable
21
21
windows :
22
22
image_name : ' vs2017-win2016'
75
75
image_name : ' ubuntu-16.04'
76
76
rustup_toolchain : nightly
77
77
mac :
78
- image_name : ' macos-10.13 '
78
+ image_name : ' macos-10.15 '
79
79
rustup_toolchain : nightly
80
80
windows :
81
81
image_name : ' vs2017-win2016'
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ impl Builder {
233
233
cmd. arg ( "--release" ) ;
234
234
cmd. env ( "KERNEL" , kernel_bin_path) ;
235
235
cmd. env ( "KERNEL_MANIFEST" , & self . kernel_manifest_path ) ;
236
- cmd. env_remove ( "RUSTFLAGS" ) ;
236
+ cmd. env ( "RUSTFLAGS" , " ") ;
237
237
cmd. env ( "XBUILD_SYSROOT_PATH" , target_dir. join ( "bootloader-sysroot" ) ) ; // for cargo-xbuild
238
238
cmd
239
239
} ;
@@ -477,10 +477,11 @@ impl fmt::Display for CreateBootimageError {
477
477
"Could not find required key `{}` in cargo metadata output" ,
478
478
key
479
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
- }
480
+ CreateBootimageError :: BootloaderNotFound => writeln ! (
481
+ f,
482
+ "Bootloader dependency not found\n \n \
483
+ You need to add a dependency on a crate named `bootloader` in your Cargo.toml."
484
+ ) ,
484
485
CreateBootimageError :: BootloaderInvalid ( err) => writeln ! (
485
486
f,
486
487
"The `bootloader` dependency has not the right format: {}" ,
You can’t perform that action at this time.
0 commit comments