From cd0112a05a9ddb7043c9808284f93d8099c48473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 24 May 2022 09:34:36 +0200 Subject: Add resources.Copy Implemented by most Resource objects, but not Page (for now). Fixes #9313 --- helpers/general.go | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'helpers') diff --git a/helpers/general.go b/helpers/general.go index e31bbfc9d..462ec773d 100644 --- a/helpers/general.go +++ b/helpers/general.go @@ -33,8 +33,6 @@ import ( "github.com/mitchellh/hashstructure" - "github.com/gohugoio/hugo/hugofs" - "github.com/gohugoio/hugo/common/hugo" "github.com/spf13/afero" @@ -521,13 +519,7 @@ func PrintFs(fs afero.Fs, path string, w io.Writer) { } afero.Walk(fs, path, func(path string, info os.FileInfo, err error) error { - var filename string - var meta any - if fim, ok := info.(hugofs.FileMetaInfo); ok { - filename = fim.Meta().Filename - meta = fim.Meta() - } - fmt.Fprintf(w, " %q %q\t\t%v\n", path, filename, meta) + fmt.Println(path) return nil }) } -- cgit v1.2.3