summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorbogem <albertnigma@gmail.com>2016-11-23 16:13:50 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-01-02 17:01:12 +0100
commit52976da0ec67361556538e41fe18286ea4dfe878 (patch)
treefd73f375e4a491ab7cc85a8d5d4f01b791bdd84e /commands
parent6fb4f048e130b877b31ba215a1437911c3f26f5c (diff)
commands: Fix case in default config variable
Diffstat (limited to 'commands')
-rw-r--r--commands/new.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/new.go b/commands/new.go
index 83ddcf527..05b5ff4dd 100644
--- a/commands/new.go
+++ b/commands/new.go
@@ -332,7 +332,7 @@ func newContentPathSection(path string) (string, string) {
func createConfig(inpath string, kind string) (err error) {
in := map[string]interface{}{
- "baseurl": "http://example.org/",
+ "baseURL": "http://example.org/",
"title": "My New Hugo Site",
"languageCode": "en-us",
}