fix missing static files
1 file changed, 5 insertions(+), 0 deletions(-)
jump to
M internal/builder/builder.go → internal/builder/builder.go
@@ -88,6 +88,11 @@ r := &Result{ Hashes: make([]string, 0), } + err := copyRecursive(storage, joinSource("static")) + if err != nil { + return nil, errors.WithMessage(err, "could not copy static files") + } + log.Debug("reading posts", "source", options.Source) posts, tags, err := content.ReadPosts(&content.Config{ Root: options.Source,