projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a159fef
)
commands: Fix case of createpath in new.go
author
Albert Nigmatzianov
<albertnigma@gmail.com>
Fri, 24 Mar 2017 07:14:14 +0000
(12:14 +0500)
committer
Bjørn Erik Pedersen
<bjorn.erik.pedersen@gmail.com>
Fri, 24 Mar 2017 21:19:03 +0000
(22:19 +0100)
commands/new.go
patch
|
blob
|
history
diff --git
a/commands/new.go
b/commands/new.go
index 7bab13e979da817ca277c81d3ee7881624ff0413..e2472af0c90110a06c62048729bdd2fffe2c62f0 100644
(file)
--- a/
commands/new.go
+++ b/
commands/new.go
@@
-107,11
+107,11
@@
func NewContent(cmd *cobra.Command, args []string) error {
return newUserError("path needs to be provided")
}
- create
p
ath := args[0]
+ create
P
ath := args[0]
var kind string
- create
path, kind = newContentPathSection(createp
ath)
+ create
Path, kind = newContentPathSection(createP
ath)
if contentType != "" {
kind = contentType
@@
-123,7
+123,7
@@
func NewContent(cmd *cobra.Command, args []string) error {
return newSystemError(err)
}
- return create.NewContent(s, kind, create
p
ath)
+ return create.NewContent(s, kind, create
P
ath)
}
func doNewSite(fs *hugofs.Fs, basepath string, force bool) error {