From fcb8aa6312b2ef55a156e71fd0af71c4db116da3 Mon Sep 17 00:00:00 2001 From: Brian McGee Date: Wed, 10 Jan 2024 13:38:30 +0000 Subject: [PATCH] chore: minor cleanup Signed-off-by: Brian McGee --- internal/cache/walk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cache/walk.go b/internal/cache/walk.go index 0fa8364..36ede84 100644 --- a/internal/cache/walk.go +++ b/internal/cache/walk.go @@ -51,7 +51,7 @@ func walkGit(ctx context.Context, root string, fn filepath.WalkFunc) error { cmd.Stdout = w cmd.Stderr = w - eg, ctx := errgroup.WithContext(ctx) + eg := errgroup.Group{} eg.Go(func() error { scanner := bufio.NewScanner(r)