From 994775180dc8a13e4ca53f1ee96b92a596400820 Mon Sep 17 00:00:00 2001 From: Facundo Blanco Date: Tue, 9 Sep 2025 12:57:05 -0300 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B=20(go):=20SRE-807=20modified?= =?UTF-8?q?=20go=5Ffiles=20command=20xargs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Facundo Blanco --- src/go/Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/go/Taskfile.yml b/src/go/Taskfile.yml index 99eff97..ccf2bc1 100644 --- a/src/go/Taskfile.yml +++ b/src/go/Taskfile.yml @@ -2,7 +2,7 @@ version: "3" env: GO_FILES: - sh: find ./ -type f -name '*.go' | grep -v '/vendor/' | sort -u | xargs + sh: find ./ -type f -name '*.go' | grep -v '/vendor/' | sort -u | xargs -n 100 true tasks: check: @@ -122,4 +122,4 @@ tasks: - goreleaser build --snapshot --rm-dist deps: - task: check:go - - task: check:goreleaser + - task: check:goreleaser \ No newline at end of file