Skip to content

Commit

Permalink
set fake git committers for cherry-picking
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Feb 23, 2025
1 parent 281f135 commit 436867f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rlottie-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ fn compile_rlottie() -> Vec<PathBuf> {
.arg("cherry-pick")
.arg("-x")
.arg(rev)
.current_dir(&src_dir));
.current_dir(&src_dir)
.env("GIT_COMMITTER_NAME", "nobody")
.env("GIT_COMMITTER_EMAIL", "nobody"));
}

// we could revisit this if the `cmake` crate becomes less opinionated
Expand Down

0 comments on commit 436867f

Please sign in to comment.