From d2c130e974d55e16516ce9bf898b4cf420203f01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B4=94=E7=AB=9E=E5=AE=81?= Date: Fri, 12 May 2023 01:31:40 +0800 Subject: [PATCH] fix: accurate job not append --- index.go | 1 + 1 file changed, 1 insertion(+) diff --git a/index.go b/index.go index f04ef66..d0ee5bb 100644 --- a/index.go +++ b/index.go @@ -157,6 +157,7 @@ func (c *Copyer) walk(ctx context.Context) ([]*baseJob, error) { targets: j.dsts, }) } + results = append(results, jobs...) return results, nil }