From fba5c57fd4ecbea544f45d2d381542eefba3bcd6 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 27 Jun 2025 22:48:21 +0200 Subject: [PATCH] fix(configs): correct environment variable for author email - Replaces incorrect `AUTHOR_MAIL` with `AUTHOR_EMAIL` in template - Ensures proper environment variable usage for email retrieval --- configs/cliff.debian.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/cliff.debian.toml b/configs/cliff.debian.toml index 881c2e2..0f08a57 100644 --- a/configs/cliff.debian.toml +++ b/configs/cliff.debian.toml @@ -8,7 +8,7 @@ body = """\ {% endfor %}\ {% endfor %} - -- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_MAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %} + -- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_EMAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %} """