Merge pull request #264 from zouyee/instead

Use WriteTo() instead
pull/265/head
Piotr Tabor 2021-03-16 09:25:19 +01:00 committed by GitHub
commit 6565e9dd89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
tx.go
View File

@ -393,7 +393,7 @@ func (tx *Tx) CopyFile(path string, mode os.FileMode) error {
return err
}
err = tx.Copy(f)
_, err = tx.WriteTo(f)
if err != nil {
_ = f.Close()
return err