aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/internal/dotgit/dotgit.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-07-19 22:04:18 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2017-07-19 22:04:18 +0200
commit6c75af73d8229be684703bf2210b7dc9587d2846 (patch)
tree37b0c554fda0fe9a9ce1b6dd6991855374b685db /storage/filesystem/internal/dotgit/dotgit.go
parent8210c82bcd6ff7f7c66b8f5fc1be00307fe59c42 (diff)
downloadgo-git-6c75af73d8229be684703bf2210b7dc9587d2846.tar.gz
storage: dotgit, fix test not closing files
Diffstat (limited to 'storage/filesystem/internal/dotgit/dotgit.go')
-rw-r--r--storage/filesystem/internal/dotgit/dotgit.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/filesystem/internal/dotgit/dotgit.go b/storage/filesystem/internal/dotgit/dotgit.go
index 7950af9..b672d4b 100644
--- a/storage/filesystem/internal/dotgit/dotgit.go
+++ b/storage/filesystem/internal/dotgit/dotgit.go
@@ -384,6 +384,7 @@ func (d *DotGit) rewritePackedRefsWithoutRef(name plumbing.ReferenceName) (err e
}
if err := f.Close(); err != nil {
+ ioutil.CheckClose(tmp, &err)
return err
}