From 284e959fc441b86b243b0a46bb9cab6ab490c416 Mon Sep 17 00:00:00 2001 From: David Roda Date: Wed, 17 Feb 2016 11:49:38 -0500 Subject: [PATCH] Close file handle when finished reading file --- tpl/template_resources.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tpl/template_resources.go b/tpl/template_resources.go index 204c0f39..8f438155 100644 --- a/tpl/template_resources.go +++ b/tpl/template_resources.go @@ -88,7 +88,7 @@ func resGetCache(id string, fs afero.Fs, ignoreCache bool) ([]byte, error) { if err != nil { return nil, err } - + defer f.Close() return ioutil.ReadAll(f) } @@ -167,6 +167,7 @@ func resGetLocal(url string, fs afero.Fs) ([]byte, error) { if err != nil { return nil, err } + defer f.Close() return ioutil.ReadAll(f) } -- 2.30.2