1
0
Fork 0
mirror of https://github.com/gohugoio/hugo.git synced 2025-03-23 09:03:42 +00:00

create: Add a log statement when archetype is a directory

See 
This commit is contained in:
Bjørn Erik Pedersen 2021-11-12 09:57:20 +01:00
parent 43ac59da85
commit 057d02de25

View file

@ -207,6 +207,9 @@ func (b *contentBuilder) buildDir() error {
in.Close()
out.Close()
}
b.h.Log.Printf("Content dir %q created", filepath.Join(baseDir, b.targetPath))
return nil
}