From 52976da0ec67361556538e41fe18286ea4dfe878 Mon Sep 17 00:00:00 2001 From: bogem Date: Wed, 23 Nov 2016 16:13:50 +0100 Subject: [PATCH] commands: Fix case in default config variable --- commands/new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", }