summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 4dc8dfc..49ffcfb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -695,11 +695,13 @@ fn run_tool(db: &Connection, auth: &mut Auth, repos: &Vec<Repository>, mut infil
let mut gitcmd = std::process::Command::new("git");
gitcmd
+ .arg("-c")
+ .arg("user.name=vbump")
+ .arg("-c")
+ .arg("user.email=jesper@jnsn.dev")
.arg("-C")
.arg(&repo.dest)
.arg("commit")
- .arg("--author")
- .arg("vbump <>")
.arg("--all")
.arg("--message")
.arg("Update versions");