Skip to content

Commit

Permalink
Tell git my email
Browse files Browse the repository at this point in the history
  • Loading branch information
jneem committed Jan 28, 2025
1 parent 336b132 commit 3611ea4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package/tests/integration/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,12 @@ fn generate_lock_file(path: &Path, config: &Config) {
.current_dir(index_dir.path())
.output()
.unwrap();
Command::new("git")
.args(["config", "user.email", "[email protected]"])
.current_dir(index_dir.path())
.output()
.unwrap();

Command::new("git")
.args(["commit", "--allow-empty", "-m", "initial"])
.current_dir(index_dir.path())
Expand Down

0 comments on commit 3611ea4

Please sign in to comment.