File tree 4 files changed +6
-6
lines changed
flowey/flowey_cli/src/pipeline_resolver
openhcl/underhill_core/src/loader
support/mesh/mesh_derive/src
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -267,6 +267,7 @@ echo "$(FLOWEY_TEMP_DIR)/work" | {var_db_insert_working_dir}
267
267
"###
268
268
)
269
269
. trim_start( )
270
+ . to_owned( )
270
271
} ) ?;
271
272
272
273
// import pipeline vars being used by the job into flowey
Original file line number Diff line number Diff line change @@ -337,6 +337,7 @@ echo "{RUNNER_TEMP}/work" | {var_db_insert_working_dir}
337
337
"###
338
338
)
339
339
. trim_start( )
340
+ . to_owned( )
340
341
} ) ?;
341
342
342
343
// import pipeline vars being used by the job into flowey
Original file line number Diff line number Diff line change @@ -541,11 +541,9 @@ pub fn write_uefi_config(
541
541
& platform_config. smbios . chassis_asset_tag ,
542
542
) ;
543
543
544
- cfg. add ( {
545
- & config:: NvdimmCount {
546
- count : platform_config. general . nvdimm_count ,
547
- padding : [ 0 ; 3 ] ,
548
- }
544
+ cfg. add ( & config:: NvdimmCount {
545
+ count : platform_config. general . nvdimm_count ,
546
+ padding : [ 0 ; 3 ] ,
549
547
} ) ;
550
548
551
549
if let Some ( instance_guid) = platform_config. general . vpci_instance_filter {
Original file line number Diff line number Diff line change @@ -919,7 +919,7 @@ fn derive_enum(
919
919
} ) ;
920
920
921
921
sizes. push ( quote ! {
922
- #variant_destructured_ref => {
922
+ & mut #variant_destructured_ref => {
923
923
const NUMBERS : & [ u32 ] = & [ #( #field_number, ) * ] ;
924
924
let entries = const { & [ #( <#field_encoding as #protobuf_mod:: FieldEncode <#field_types, #resource_type>>:: ENTRY . erase( ) , ) * ] } ;
925
925
// SAFETY: the fields are in the same object as `self`.
You can’t perform that action at this time.
0 commit comments