From d542a56a8d47e789f374228a670b99c54a6ef555 Mon Sep 17 00:00:00 2001 From: Snider Date: Sun, 22 Feb 2026 21:00:17 +0000 Subject: [PATCH] refactor: apply go fix modernizers for Go 1.26 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automated fixes: interface{} → any, range-over-int, t.Context(), wg.Go(), strings.SplitSeq, strings.Builder, slices.Contains, maps helpers, min/max builtins. Co-Authored-By: Virgil --- git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.go b/git.go index 9f5460c..67665cc 100644 --- a/git.go +++ b/git.go @@ -92,7 +92,7 @@ func getStatus(ctx context.Context, path, name string) RepoStatus { } // Parse status output - for _, line := range strings.Split(porcelain, "\n") { + for line := range strings.SplitSeq(porcelain, "\n") { if len(line) < 2 { continue }