Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.

Commit 20fdc56

Browse files
author
Yevgeny Pats
committed
bugfix in additional-corpus implementation
1 parent d751518 commit 20fdc56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/agent.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func (c *FuzzitClient) RunFuzzer(job Job, jobId string, updateDB bool) error {
142142
}
143143
if err := c.downloadAndExtract(
144144
"additional-corpus",
145-
fmt.Sprintf("orgs/%s/targets/%s/jobs/%s/corpus.tar.gz", c.Org, c.currentJob.TargetId, c.jobId)); err != nil {
145+
fmt.Sprintf("orgs/%s/targets/%s/jobs/%s/additional-corpus", c.Org, c.currentJob.TargetId, c.jobId)); err != nil {
146146
if err.Error() == "404 Not Found" {
147147
log.Println("no additional-corpus. skipping...")
148148
} else {

client/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
const FuzzitEndpoint = "https://app.fuzzit.dev"
14-
const Version = "v2.4.70"
14+
const Version = "v2.4.71"
1515

1616
type Target struct {
1717
Name string `firestore:"target_name"`

0 commit comments

Comments
 (0)