From: bogem Date: Wed, 23 Nov 2016 15:13:50 +0000 (+0100) Subject: commands: Fix case in default config variable X-Git-Tag: v0.19~140 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=52976da0ec67361556538e41fe18286ea4dfe878;p=brevno-suite%2Fhugo commands: Fix case in default config variable --- diff --git a/commands/new.go b/commands/new.go index 83ddcf52..05b5ff4d 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", }