summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorspf13 <steve.francia@gmail.com>2014-05-27 18:29:15 -0400
committerspf13 <steve.francia@gmail.com>2014-05-27 18:29:15 -0400
commite7991003951959809349acb80f041152338f0d7b (patch)
tree0dd6f9f754887b27eb8aa926c7328fc4298509b1 /commands
parent6b8244ba67cede0c2c95bde695cf3c54002bce74 (diff)
Fix bug so watch works on theme directories as well
Diffstat (limited to 'commands')
-rw-r--r--commands/hugo.go2
1 files changed, 1 insertions, 1 deletions
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