From d9964451a570aec28116f9f0a35d54a2a42fc6ce Mon Sep 17 00:00:00 2001 From: Tatsushi Demachi Date: Sat, 6 Sep 2014 10:38:36 +0900 Subject: [PATCH] More error messages at syncing static contents --- commands/hugo.go | 2 +- utils/utils.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/hugo.go b/commands/hugo.go index a35a1f001..e95b0c0d8 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -229,7 +229,7 @@ func copyStatic() error { // Copy Static to Destination jww.INFO.Println("syncing from", themeDir, "to", publishDir) - fsync.Sync(publishDir, themeDir) + utils.CheckErr(fsync.Sync(publishDir, themeDir), fmt.Sprintf("Error copying static files of theme to %s", publishDir)) } // Copy Static to Destination diff --git a/utils/utils.go b/utils/utils.go index df54737fc..eaa6c09a9 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -15,6 +15,7 @@ func CheckErr(err error, s ...string) { for _, message := range s { jww.ERROR.Println(message) } + jww.ERROR.Println(err) } } }