From e7991003951959809349acb80f041152338f0d7b Mon Sep 17 00:00:00 2001 From: spf13 Date: Tue, 27 May 2014 18:29:15 -0400 Subject: [PATCH] Fix bug so watch works on theme directories as well --- commands/hugo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/hugo.go b/commands/hugo.go index e18da8722..5e55d5279 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -217,7 +217,7 @@ func copyStatic() error { // Copy Static to Destination jww.INFO.Println("syncing from", themeDir, "to", publishDir) - return fsync.Sync(publishDir, themeDir) + fsync.Sync(publishDir, themeDir) } // Copy Static to Destination