From a769e8e9abb58927dc2b0694879f19281e98280d Mon Sep 17 00:00:00 2001 From: Slug-Boi Date: Thu, 10 Apr 2025 12:49:42 +0200 Subject: [PATCH] ci: change location of cover.out search --- ci/test_on_push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_on_push.go b/ci/test_on_push.go index d38b178..c18ef3d 100644 --- a/ci/test_on_push.go +++ b/ci/test_on_push.go @@ -43,7 +43,7 @@ func main() { fmt.Println(out) // export the coverage report - _, err = client.Host().Directory(".").WithFile("cover.out", runner.File("/src_d/src/cover.out")).Export(ctx, ".") + _, err = client.Host().Directory(".").WithFile("cover.out", runner.File("./cover.out")).Export(ctx, ".") if err != nil { panic(err) }