From 15b769203f8382a31609990fbd129dde082533b3 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 19 May 2026 19:09:20 +0000 Subject: [PATCH] fix(autopatch): auto-fix for glibc on c10 Updated find/replace strings in the 'log --first-parent' ReplaceAction to match new patch-git.lua format that includes '--no-decorate' and splits the string across two lines. --- config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.yaml b/config.yaml index 03eba64..142ffe9 100644 --- a/config.yaml +++ b/config.yaml @@ -50,11 +50,11 @@ actions: count: 1 - target: "patch-git.lua" find: | - 'log --first-parent --no-renames --raw --pretty=fuller --date=default > ' - .. git_log_file) + 'log --first-parent --no-decorate --no-renames --raw --pretty=fuller' + .. ' --date=default > ' .. git_log_file) replace: | - 'log --first-parent --no-renames --raw --pretty=fuller --date=default ' - .. log_branch .. ' > ' .. git_log_file) + 'log --first-parent --no-decorate --no-renames --raw --pretty=fuller' + .. ' --date=default ' .. log_branch .. ' > ' .. git_log_file) count: 1 - target: "patch-git.lua" find: |