Merge pull request #4770 from testwill/close_files

fix: close files
This commit is contained in:
Michael Eischer 2024-04-17 16:50:20 +00:00 committed by GitHub
commit 2173c69280
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -82,6 +82,10 @@ func runRepairPacks(ctx context.Context, gopts GlobalOptions, term *termstatus.T
return err
})
if err != nil {
_ = f.Close()
return err
}
if err := f.Close(); err != nil {
return err
}
}