| Index: fuzzer/go/common/storage.go
|
| diff --git a/fuzzer/go/common/storage.go b/fuzzer/go/common/storage.go
|
| index 6883b325fad9870089766111b48c958fc8951950..010c32eae2deff61fc0d58dddf7cfea7b36443b4 100644
|
| --- a/fuzzer/go/common/storage.go
|
| +++ b/fuzzer/go/common/storage.go
|
| @@ -15,7 +15,7 @@ import (
|
| func GetAllFuzzNamesInFolder(s *storage.Client, name string) (hashes []string, err error) {
|
| filter := func(item *storage.ObjectAttrs) {
|
| name := item.Name
|
| - if strings.HasSuffix(name, ".dump") || strings.HasSuffix(name, ".err") {
|
| + if strings.Contains(name, ".") {
|
| return
|
| }
|
| fuzzHash := name[strings.LastIndex(name, "/")+1:]
|
|
|