Skip to content

Commit

Permalink
build: fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
saffage committed May 7, 2024
1 parent ae1c6ea commit 99647c9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions internal/jet/jet.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ func process(
}
typeinfo, errs := checker.Check(mod)
_ = typeinfo

if len(errs) != 0 {
for _, err := range errs {
reportError(cfg, err)
}
return
}
}
}

0 comments on commit 99647c9

Please sign in to comment.