Rename NormalizeHugoFlagsFunc to NormalizeHugoFlags
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 2 Oct 2015 04:47:34 +0000 (06:47 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 2 Oct 2015 04:48:02 +0000 (06:48 +0200)
It IS a func.

commands/hugo.go
helpers/general.go

index 8048174784d968a4de7619a8ac862738f165e260..67ca8f19d56f00fff2d885d16ac922b464255d33 100644 (file)
@@ -65,7 +65,7 @@ var Source, CacheDir, Destination, Theme, BaseURL, CfgFile, LogFile, Editor stri
 
 //Execute adds all child commands to the root command HugoCmd and sets flags appropriately.
 func Execute() {
-       HugoCmd.SetGlobalNormalizationFunc(helpers.NormalizeHugoFlagsFunc)
+       HugoCmd.SetGlobalNormalizationFunc(helpers.NormalizeHugoFlags)
        AddCommands()
        utils.StopOnErr(HugoCmd.Execute())
 }
index d97c78454edd7f266b7b101f36a89ceb99825b26..5b5778b8c42b65e7d80fd498c3b10663a6616b6d 100644 (file)
@@ -432,7 +432,7 @@ func DoArithmetic(a, b interface{}, op rune) (interface{}, error) {
 
 // NormalizeHugoFlagsFunc facilitates transitions of Hugo command-line flags,
 // e.g. --baseUrl to --baseURL, --uglyUrls to --uglyURLs
-func NormalizeHugoFlagsFunc(f *pflag.FlagSet, name string) pflag.NormalizedName {
+func NormalizeHugoFlags(f *pflag.FlagSet, name string) pflag.NormalizedName {
        switch name {
        case "baseUrl":
                name = "baseURL"