Make readFile return nil when file not found (note)

Fixes #9620
This commit is contained in:
Bjørn Erik Pedersen
2022-12-30 11:10:49 +01:00
parent dd6d0a6de1
commit 3c51625c71
2 changed files with 32 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ import (
"path/filepath"
"github.com/bep/overlayfs"
"github.com/gohugoio/hugo/common/herrors"
"github.com/gohugoio/hugo/deps"
"github.com/spf13/afero"
"github.com/spf13/cast"
@@ -101,7 +102,11 @@ func (ns *Namespace) ReadFile(i any) (string, error) {
s = ns.deps.PathSpec.RelPathify(s)
}
return readFile(ns.readFileFs, s)
s, err = readFile(ns.readFileFs, s)
if err != nil && herrors.IsNotExist(err) {
return "", nil
}
return s, err
}
// ReadDir lists the directory contents relative to the configured WorkingDir.