From: spf13 Date: Tue, 1 Oct 2013 02:40:15 +0000 (-0400) Subject: fixed #85 X-Git-Tag: v0.9~77 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=48e1068e;p=brevno-suite%2Fhugo fixed #85 --- diff --git a/commands/hugo.go b/commands/hugo.go index 05bce199..21f4f0f9 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -45,7 +45,10 @@ var Source, Destination, BaseUrl, CfgFile string func Execute() { AddCommands() Hugo := HugoCmd.ToCommander() - Hugo.Execute() + err := Hugo.Execute() + if err != nil { + os.Exit(-1) + } } func AddCommands() {