Skip to content

Commit 0481e67

Browse files
committed
Fix path creation
1 parent 1bf616f commit 0481e67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/testing/fetcher_artifact.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func (f *artifactFetcher) Fetch(ctx context.Context, operatingSystem string, arc
9393
}
9494

9595
// this remote path cannot have the build metadata in it
96-
srcPath := fmt.Sprintf("elastic-agent-%s-%s-%s", prefix, ver.VersionWithPrerelease(), suffix)
96+
srcPath := fmt.Sprintf("elastic-agent-%s%s-%s", prefix, ver.VersionWithPrerelease(), suffix)
9797
downloadSrc := fmt.Sprintf("%s%s", uri, srcPath)
9898

9999
return &artifactResult{

0 commit comments

Comments
 (0)