From: Bjørn Erik Pedersen Date: Mon, 27 Mar 2017 08:55:29 +0000 (+0200) Subject: Exit -1 on ERROR in non-global logger X-Git-Tag: v0.20~109 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9262c5b3;p=brevno-suite%2Fhugo Exit -1 on ERROR in non-global logger Fixes #3239 --- diff --git a/main.go b/main.go index 25b0f6e8..189cac43 100644 --- a/main.go +++ b/main.go @@ -16,9 +16,10 @@ package main import ( "runtime" + "os" + "github.com/spf13/hugo/commands" jww "github.com/spf13/jwalterweatherman" - "os" ) func main() { @@ -28,4 +29,10 @@ func main() { if jww.LogCountForLevelsGreaterThanorEqualTo(jww.LevelError) > 0 { os.Exit(-1) } + + if commands.Hugo != nil { + if commands.Hugo.Log.LogCountForLevelsGreaterThanorEqualTo(jww.LevelError) > 0 { + os.Exit(-1) + } + } }