Skip to content

Commit

Permalink
remove kong error patch
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAbides committed Nov 15, 2023
1 parent 79c82af commit 430a956
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cmd/bindown/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package main

import (
"context"
"errors"
"fmt"
"io"
"os"
Expand Down Expand Up @@ -196,11 +195,6 @@ func Run(ctx context.Context, args []string, opts *runOpts) {
kongCtx.Stdout = io.Discard
}
err = kongCtx.Run()
// unwrap the error because we don't want to output the method name
e := errors.Unwrap(err)
if e != nil {
err = e
}
kongCtx.FatalIfErrorf(err)
}

Expand Down

0 comments on commit 430a956

Please sign in to comment.