projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73dd4f3
)
allow site to be built with empty content
author
Billie H. Cleek
<billie.cleek@idexpertscorp.com>
Mon, 30 Jun 2014 04:35:34 +0000
(21:35 -0700)
committer
spf13
<steve.francia@gmail.com>
Mon, 30 Jun 2014 19:28:18 +0000
(15:28 -0400)
Build the site even if there isn't anything in the content directory.
hugolib/site.go
patch
|
blob
|
history
diff --git
a/hugolib/site.go
b/hugolib/site.go
index f3d9bc6aef19a5c9a2cbe8a2c10f29fe79f0d14a..0eddb03180183c95f241efb89e8ab300450084d5 100644
(file)
--- a/
hugolib/site.go
+++ b/
hugolib/site.go
@@
-314,7
+314,7
@@
func (s *Site) CreatePages() (err error) {
panic(fmt.Sprintf("s.Source not set %s", s.absContentDir()))
}
if len(s.Source.Files()) < 1 {
- return
fmt.Errorf("No source files found in %s", s.absContentDir())
+ return
}
var wg sync.WaitGroup