mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
tools/stubmaker: fix dropped error (#22112)
This commit is contained in:
parent
032dd8fd7c
commit
194e8cdb02
1 changed files with 3 additions and 0 deletions
|
|
@ -62,6 +62,9 @@ func main() {
|
|||
}
|
||||
|
||||
inputLines, err := readLines(bytes.NewBuffer(b))
|
||||
if err != nil {
|
||||
fatal(err)
|
||||
}
|
||||
funcs := getFuncs(inputLines)
|
||||
if needed, err := isStubNeeded(funcs); err != nil {
|
||||
fatal(err)
|
||||
|
|
|
|||
Loading…
Reference in a new issue