Skip to content

Commit 05043a3

Browse files
committed
add git_merge_commit_email into GitConfig
Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent 38e3a57 commit 05043a3

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
@@ -2509,6 +2509,7 @@ impl Config {
25092509
GitConfig {
25102510
git_repository: &self.stage0_metadata.config.git_repository,
25112511
nightly_branch: &self.stage0_metadata.config.nightly_branch,
2512+
git_merge_commit_email: &self.stage0_metadata.config.git_merge_commit_email,
25122513
}
25132514
}
25142515

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)