commands: Fix case of createpath in new.go
authorAlbert Nigmatzianov <albertnigma@gmail.com>
Fri, 24 Mar 2017 07:14:14 +0000 (12:14 +0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 24 Mar 2017 21:19:03 +0000 (22:19 +0100)
commands/new.go

index 7bab13e979da817ca277c81d3ee7881624ff0413..e2472af0c90110a06c62048729bdd2fffe2c62f0 100644 (file)
@@ -107,11 +107,11 @@ func NewContent(cmd *cobra.Command, args []string) error {
                return newUserError("path needs to be provided")
        }
 
-       createpath := args[0]
+       createPath := args[0]
 
        var kind string
 
-       createpath, kind = newContentPathSection(createpath)
+       createPath, kind = newContentPathSection(createPath)
 
        if contentType != "" {
                kind = contentType
@@ -123,7 +123,7 @@ func NewContent(cmd *cobra.Command, args []string) error {
                return newSystemError(err)
        }
 
-       return create.NewContent(s, kind, createpath)
+       return create.NewContent(s, kind, createPath)
 }
 
 func doNewSite(fs *hugofs.Fs, basepath string, force bool) error {