Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-08-20 22:28:38 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-08-20 22:33:06 +0300
commit20c4311df4e61edb449ec93837cdde96a700b879 (patch)
tree992334fac5cd41dbe946fc83c205c64964dda591 /commands
parent81f04ef4f0acf518e78846d4d15c07c531a08546 (diff)
Switch to a more up to date TOML library
Fixes #2089
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 fe4ed75e1..4cd8d7197 100644
--- a/commands/new.go
+++ b/commands/new.go
@@ -317,7 +317,7 @@ func newContentPathSection(path string) (string, string) {
}
func createConfig(inpath string, kind string) (err error) {
- in := map[string]string{
+ in := map[string]interface{}{
"baseurl": "http://replace-this-with-your-hugo-site.com/",
"title": "My New Hugo Site",
"languageCode": "en-us",