summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-01 16:38:56 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-01 16:38:56 +0100
commit80e1fd29ab52a608d3f8359b8775b975bf3b59e5 (patch)
tree215a4b397a4ebda962a2ee4cfdc90f168dc5ea93 /commands
parent5b065a27a26fbc70a5383d48b4657bebd4ab5ed5 (diff)
Log fsync errors
Diffstat (limited to 'commands')
-rw-r--r--commands/hugo.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/commands/hugo.go b/commands/hugo.go
index 83dae0d11..dd3ca289e 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -847,7 +847,9 @@ func NewWatcher(port int) error {
} else if err == nil {
// If file still exists, sync it
logger.Println("Syncing", relPath, "to", publishDir)
- syncer.Sync(filepath.Join(publishDir, relPath), relPath)
+ if err := syncer.Sync(filepath.Join(publishDir, relPath), relPath); err != nil {
+ jww.ERROR.Println(err)
+ }
} else {
jww.ERROR.Println(err)
}
@@ -857,7 +859,9 @@ func NewWatcher(port int) error {
// For all other event operations Hugo will sync static.
logger.Println("Syncing", relPath, "to", publishDir)
- syncer.Sync(filepath.Join(publishDir, relPath), relPath)
+ if err := syncer.Sync(filepath.Join(publishDir, relPath), relPath); err != nil {
+ jww.ERROR.Println(err)
+ }
}
}