From: Bjørn Erik Pedersen Date: Mon, 1 Jan 2018 13:28:19 +0000 (+0100) Subject: resource: Use the correct Destination FS X-Git-Tag: v0.32.1~5 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a54fd7df215c1eccb2749e2becdec93766a7b77f;p=brevno-suite%2Fhugo resource: Use the correct Destination FS Source and destination will be the same when this happens, but it should be correct. See #4202 --- diff --git a/resource/image.go b/resource/image.go index 2e8dc5f0..c638a995 100644 --- a/resource/image.go +++ b/resource/image.go @@ -414,7 +414,7 @@ func (i *Image) copyToDestination(src string) error { if err != nil && os.IsNotExist(err) { // When called from shortcodes, the target directory may not exist yet. // See https://github.com/gohugoio/hugo/issues/4202 - if err = i.spec.Fs.Source.MkdirAll(filepath.Dir(target), os.FileMode(0755)); err != nil { + if err = i.spec.Fs.Destination.MkdirAll(filepath.Dir(target), os.FileMode(0755)); err != nil { res = err return }