mirror of
https://github.com/Bornholm/formidable.git
synced 2025-04-05 21:51:10 +02:00
fix: ignore ErrClosed in deferred func
This commit is contained in:
parent
5b1d9e7b2b
commit
903f9792ed
@ -4,6 +4,7 @@ import (
|
||||
"bytes"
|
||||
"io"
|
||||
"net/url"
|
||||
"os"
|
||||
|
||||
encjson "encoding/json"
|
||||
|
||||
@ -173,7 +174,7 @@ func outputValues(ctx *cli.Context, values interface{}) error {
|
||||
}
|
||||
|
||||
defer func() {
|
||||
if err := writer.Close(); err != nil {
|
||||
if err := writer.Close(); err != nil && !errors.Is(err, os.ErrClosed) {
|
||||
panic(errors.WithStack(err))
|
||||
}
|
||||
}()
|
||||
|
Loading…
x
Reference in New Issue
Block a user