From 51af1d2eadcad89e8c2906c05549352ef69ab016 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sat, 21 Apr 2018 23:46:34 +0200 Subject: [PATCH] tpl/os: Make fileExist use the same filesystem as readFile Fixes #4633 --- tpl/os/os.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.30.2