commit f87239e4cab958bf59ecfb1beb8cac439441a553
parent db0633c1a45f69f76ad2f4034b49adbf9d60c7ae
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date: Thu, 5 Apr 2018 18:02:52 +0200
Fix livereload for the home page bundle
Fixes #4576
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/hugolib/hugo_sites.go b/hugolib/hugo_sites.go
@@ -676,6 +676,7 @@ type contentChangeMap struct {
func (m *contentChangeMap) add(filename string, tp bundleDirType) {
m.mu.Lock()
dir := filepath.Dir(filename) + helpers.FilePathSeparator
+ dir = strings.TrimPrefix(dir, ".")
switch tp {
case bundleBranch:
m.branches = append(m.branches, dir)