From ee6d198caaf932fdd237d699a62f24fb8cf0cdd9 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Mon, 9 Feb 2026 13:24:52 +0200 Subject: [PATCH] chore: Turn off commit with `gpgsign` in script/generate.sh --- script/generate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/generate.sh b/script/generate.sh index 186bb68afa1..35fd4b282c8 100755 --- a/script/generate.sh +++ b/script/generate.sh @@ -24,7 +24,7 @@ if [ "$1" = "--check" ]; then ( cd "$GENTEMP" git add . - git -c user.name='bot' -c user.email='bot@localhost' commit -m "generate" -q --allow-empty + git -c user.name='bot' -c user.email='bot@localhost' -c commit.gpgsign=false commit -m "generate" -q --allow-empty script/generate.sh [ -z "$(git status --porcelain)" ] || { msg="Generated files are out of date. Please run script/generate.sh and commit the results"