diff options
| author | Jesper Jensen <jesper@jnsn.dev> | 2026-02-03 22:14:12 +0100 |
|---|---|---|
| committer | Jesper Jensen <jesper@jnsn.dev> | 2026-02-03 22:14:12 +0100 |
| commit | 822de848fc1803dbc6032f90ef449b5b37717667 (patch) | |
| tree | 144a3f74db3aec9ddb1395ae969151c1121b2e5d | |
| parent | 22612ecd9a375b6479c1bb9ee35534a3f175e278 (diff) | |
Set the username and email differently
| -rw-r--r-- | src/main.rs | 6 |
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"); |
