From: Bjørn Erik Pedersen Date: Sat, 21 Apr 2018 21:46:34 +0000 (+0200) Subject: tpl/os: Make fileExist use the same filesystem as readFile X-Git-Tag: v0.40~11 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=51af1d2eadcad89e8c2906c05549352ef69ab016;p=brevno-suite%2Fhugo tpl/os: Make fileExist use the same filesystem as readFile Fixes #4633 --- diff --git a/tpl/os/os.go b/tpl/os/os.go index f005bd4a..f7f9537f 100644 --- a/tpl/os/os.go +++ b/tpl/os/os.go @@ -123,7 +123,7 @@ func (ns *Namespace) FileExists(i interface{}) (bool, error) { return false, errors.New("fileExists needs a path to a file") } - status, err := afero.Exists(ns.deps.Fs.WorkingDir, path) + status, err := afero.Exists(ns.readFileFs, path) if err != nil { return false, err }