Site.ReadPagesFromSource returns nil chan error value when a site
content directory is empty but its receiver expects to be passed
something error values via the channel.
This fixes it by returning a channel which will be immediately closed.
Fix #1797
panic(fmt.Sprintf("s.Source not set %s", s.absContentDir()))
}
+ errs := make(chan error)
+
if len(s.Source.Files()) < 1 {
- return nil
+ close(errs)
+ return errs
}
files := s.Source.Files()
go sourceReader(s, filechan, results, wg)
}
- errs := make(chan error)
-
// we can only have exactly one result collator, since it makes changes that
// must be synchronized.
go readCollator(s, results, errs)