diff options
Diffstat (limited to 'internal/commands/root.go')
-rw-r--r-- | internal/commands/root.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/commands/root.go b/internal/commands/root.go index 04f1203..553d0b4 100644 --- a/internal/commands/root.go +++ b/internal/commands/root.go @@ -37,7 +37,7 @@ func Execute() error { } defer func() { if db, ok := q.DBTX().(*sql.DB); ok { - db.Close() + _ = db.Close() } }() |