fixed #85
authorspf13 <steve.francia@gmail.com>
Tue, 1 Oct 2013 02:40:15 +0000 (22:40 -0400)
committerspf13 <steve.francia@gmail.com>
Tue, 1 Oct 2013 02:40:15 +0000 (22:40 -0400)
commands/hugo.go

index 05bce19951f82680e25a376cf95b527bdcd268f9..21f4f0f90bbaa9383abade13a0ff181d3fac59dc 100644 (file)
@@ -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() {