Skip to content

Commit da09ea4

Browse files
onur-ozkanshrirambalaji
authored andcommitted
add git_merge_commit_email into GitConfig
Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent a134bc6 commit da09ea4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/bootstrap/src/core/config/config.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2512,6 +2512,7 @@ impl Config {
25122512
GitConfig {
25132513
git_repository: &self.stage0_metadata.config.git_repository,
25142514
nightly_branch: &self.stage0_metadata.config.nightly_branch,
2515+
git_merge_commit_email: &self.stage0_metadata.config.git_merge_commit_email,
25152516
}
25162517
}
25172518

src/tools/build_helper/src/git.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ use std::process::{Command, Stdio};
44
pub struct GitConfig<'a> {
55
pub git_repository: &'a str,
66
pub nightly_branch: &'a str,
7+
pub git_merge_commit_email: &'a str,
78
}
89

910
/// Runs a command and returns the output

0 commit comments

Comments
 (0)