From e7f964b5ecea5bb586173034dee3ac4aed9bf521 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 11 Aug 2026 10:01:52 +0000 Subject: [PATCH] fix(autopatch): auto-fix for glibc on c10s Updated action 3's find/replace strings in patch-git.lua to match the refactored git log command that now uses a `git_log_format_options` variable. --- config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.yaml b/config.yaml index 73c63be..d7afc9f 100644 --- a/config.yaml +++ b/config.yaml @@ -42,11 +42,11 @@ actions: count: 1 - target: "patch-git.lua" find: | - 'log --first-parent --no-decorate --no-renames --raw --pretty=fuller' - .. ' --date=default > ' .. git_log_file) + 'log --raw ' .. git_log_format_options + .. ' > ' .. git_log_file) replace: | - 'log --first-parent --no-decorate --no-renames --raw --pretty=fuller' - .. ' --date=default ' .. log_branch .. ' > ' .. git_log_file) + 'log --raw ' .. git_log_format_options + .. ' ' .. log_branch .. ' > ' .. git_log_file) count: 1 - target: "spec" find: "%define target %{_target_cpu}-redhat-linux"