Let Cobra do the usage error logging
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 5 Oct 2015 18:26:49 +0000 (20:26 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 5 Oct 2015 18:26:49 +0000 (20:26 +0200)
Fixes #1472

commands/hugo.go
utils/utils.go
utils/utils_test.go [deleted file]

index 3fbbe0952296c61cd2ffce8678ce5e3303f1dd3c..b0e4964c4de56366416e2c5087296aff369fc786 100644 (file)
@@ -67,7 +67,10 @@ var Source, CacheDir, Destination, Theme, BaseURL, CfgFile, LogFile, Editor stri
 func Execute() {
        HugoCmd.SetGlobalNormalizationFunc(helpers.NormalizeHugoFlags)
        AddCommands()
-       utils.StopOnErr(HugoCmd.Execute())
+       if err := HugoCmd.Execute(); err != nil {
+               // the err is already logged by Cobra
+               os.Exit(-1)
+       }
 }
 
 //AddCommands adds child commands to the root command HugoCmd.
index ea89ec7454ceeb6b0b555352d7b811a7a8abb9f6..7bb9e58524e0b95857dd49c2abf8b8ddcbb7b935 100644 (file)
@@ -2,7 +2,6 @@ package utils
 
 import (
        "os"
-       "strings"
 
        jww "github.com/spf13/jwalterweatherman"
 )
@@ -23,7 +22,7 @@ func CheckErr(err error, s ...string) {
 func StopOnErr(err error, s ...string) {
        if err != nil {
                if len(s) == 0 {
-                       newMessage := cutUsageMessage(err.Error())
+                       newMessage := err.Error()
 
                        // Printing an empty string results in a error with
                        // no message, no bueno.
@@ -32,8 +31,6 @@ func StopOnErr(err error, s ...string) {
                        }
                } else {
                        for _, message := range s {
-                               message := cutUsageMessage(message)
-
                                if message != "" {
                                        jww.CRITICAL.Println(message)
                                }
@@ -42,16 +39,3 @@ func StopOnErr(err error, s ...string) {
                os.Exit(-1)
        }
 }
-
-// cutUsageMessage splits the incoming string on the beginning of the usage
-// message text. Anything in the first element of the returned slice, trimmed
-// of its Unicode defined spaces, should be returned. The 2nd element of the
-// slice will have the usage message  that we wish to elide.
-//
-// This is done because Cobra already prints Hugo's usage message; not eliding
-// would result in the usage output being printed twice, which leads to bug
-// reports, more specifically: https://github.com/spf13/hugo/issues/374
-func cutUsageMessage(s string) string {
-       pieces := strings.Split(s, "Usage of")
-       return strings.TrimSpace(pieces[0])
-}
diff --git a/utils/utils_test.go b/utils/utils_test.go
deleted file mode 100644 (file)
index 4ec2a4e..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-package utils
-
-import (
-       "testing"
-)
-
-func TestCutUsageMessage(t *testing.T) {
-       tests := []struct {
-               message    string
-               cutMessage string
-       }{
-               {"", ""},
-               {" Usage of hugo: \n  -b, --baseURL=...", ""},
-               {"Some error Usage of hugo: \n", "Some error"},
-               {"Usage of hugo: \n -b --baseU", ""},
-               {"CRITICAL error for usage of hugo ", "CRITICAL error for usage of hugo"},
-               {"Invalid short flag a in -abcde", "Invalid short flag a in -abcde"},
-       }
-
-       for _, test := range tests {
-               message := cutUsageMessage(test.message)
-               if message != test.cutMessage {
-                       t.Errorf("Expected %#v, got %#v", test.cutMessage, message)
-               }
-       }
-}