Skip to content

Commit

Permalink
Address new clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre committed Jul 14, 2023
1 parent a771376 commit 1e470e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/process_wrapper/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ fn environment_block(
// Have the last values added take precedence over the first.
// This is simpler than needing to track duplicates and explicitly override
// them.
environment_variables.extend(environment_file_block.into_iter());
environment_variables.extend(environment_file_block);
for (f, replace_with) in &[stable_stamp_mappings, volatile_stamp_mappings].concat() {
for value in environment_variables.values_mut() {
let from = format!("{{{f}}}");
Expand Down

0 comments on commit 1e470e1

Please sign in to comment.