From: spf13 Date: Tue, 27 May 2014 22:29:15 +0000 (-0400) Subject: Fix bug so watch works on theme directories as well X-Git-Tag: v0.11~22 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e7991003951959809349acb80f041152338f0d7b;p=brevno-suite%2Fhugo Fix bug so watch works on theme directories as well --- diff --git a/commands/hugo.go b/commands/hugo.go index e18da872..5e55d527 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