diff --git a/commands/commands_test.go b/commands/commands_test.go index 5b5e9aa81..8f1ef825d 100644 --- a/commands/commands_test.go +++ b/commands/commands_test.go @@ -117,11 +117,13 @@ func TestExecute(t *testing.T) { func checkNewSiteInited(c *qt.C, basepath string) { paths := []string{ - filepath.Join(basepath, "layouts"), - filepath.Join(basepath, "content"), filepath.Join(basepath, "archetypes"), - filepath.Join(basepath, "static"), + filepath.Join(basepath, "assets"), + filepath.Join(basepath, "content"), filepath.Join(basepath, "data"), + filepath.Join(basepath, "layouts"), + filepath.Join(basepath, "static"), + filepath.Join(basepath, "themes"), filepath.Join(basepath, "config.toml"), } diff --git a/commands/new_site.go b/commands/new_site.go index 384c6365b..438553ae7 100644 --- a/commands/new_site.go +++ b/commands/new_site.go @@ -62,11 +62,12 @@ Use ` + "`hugo new [contentPath]`" + ` to create new content.`, func (n *newSiteCmd) doNewSite(fs *hugofs.Fs, basepath string, force bool) error { archeTypePath := filepath.Join(basepath, "archetypes") dirs := []string{ - filepath.Join(basepath, "layouts"), - filepath.Join(basepath, "content"), archeTypePath, - filepath.Join(basepath, "static"), + filepath.Join(basepath, "assets"), + filepath.Join(basepath, "content"), filepath.Join(basepath, "data"), + filepath.Join(basepath, "layouts"), + filepath.Join(basepath, "static"), filepath.Join(basepath, "themes"), }