support explicit paths and processing paths from stdin #21

Closed
brianmcgee wants to merge 5 commits from feat/explicit-paths into main
Showing only changes of commit 7abc58a347 - Show all commits

View File

@ -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)