From b8bb11943a7e8eb988b3f9d0cd62308196427f03 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sun, 29 Jan 2023 22:27:35 +0000 Subject: [PATCH] Fix default test.sh path --- pew.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pew.go b/pew.go index a19619f..0a9bceb 100644 --- a/pew.go +++ b/pew.go @@ -395,7 +395,7 @@ func whatever(swg *sizedwaitgroup.SizedWaitGroup, ka config.Artifact, if testPath == "" { testPath = result.BuildArtifact + "_test" if !exists(testPath) { - testPath = tmp + "/" + "test.sh" + testPath = tmp + "/source/" + "test.sh" } }