diff --git a/cmd/bindown/cli.go b/cmd/bindown/cli.go index 80f2f882..774f34ad 100644 --- a/cmd/bindown/cli.go +++ b/cmd/bindown/cli.go @@ -2,7 +2,6 @@ package main import ( "context" - "errors" "fmt" "io" "os" @@ -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) }