Skip to content

Commit

Permalink
style: remove verbose warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gbotrel committed Jan 21, 2025
1 parent 0d8ce82 commit f00c3e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ func GenerateVectors() error {
if !dirEntry.IsDir() {

if filepath.Ext(dirEntry.Name()) == ".json" {
fmt.Println("\tprocessing", dirEntry.Name())
path := filepath.Join(testDirPath, dirEntry.Name())
if !bavard.ShouldGenerate(path) {
continue
}
fmt.Println("\tprocessing", dirEntry.Name())
if err = run(path); err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion internal/generator/gkr/test_vectors/main.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f00c3e8

Please sign in to comment.