fix: update fallback vault git email

This commit is contained in:
lucaronin
2026-04-28 10:08:18 +02:00
parent 2e331315e8
commit 20a960551f
2 changed files with 2 additions and 5 deletions

View File

@@ -130,10 +130,7 @@ fn git_command_label<'a>(args: &'a [&'a str]) -> &'a str {
/// Set local user.name and user.email if not already configured.
pub(crate) fn ensure_author_config(dir: &Path) -> Result<(), String> {
for (key, fallback) in [
("user.name", "Tolaria"),
("user.email", "vault@tolaria.app"),
] {
for (key, fallback) in [("user.name", "Tolaria"), ("user.email", "vault@tolaria.md")] {
let local = git_command()
.args(["config", "--local", key])
.current_dir(dir)