summaryrefslogtreecommitdiffstats
path: root/commands/new_theme.go
diff options
context:
space:
mode:
authorAvinash Sonawane <rootkea@gmail.com>2021-03-14 11:20:02 +0000
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-03-14 18:47:23 +0100
commit24c716cac35b0c5476944108e545058749c43e61 (patch)
treeb1ef59c76c4c8486eca82583601640fd20a6891a /commands/new_theme.go
parent137d2dab3285e9b0f8fe4dcc65ab6ecf8bb09002 (diff)
Fix `new theme` command description
`hugo new theme foo` creates theme `foo` in `./themes` and not in current directory.
Diffstat (limited to 'commands/new_theme.go')
-rw-r--r--commands/new_theme.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/new_theme.go b/commands/new_theme.go
index 3ffd85c04..965c2ca5f 100644
--- a/commands/new_theme.go
+++ b/commands/new_theme.go
@@ -38,7 +38,7 @@ func (b *commandsBuilder) newNewThemeCmd() *newThemeCmd {
cmd := &cobra.Command{
Use: "theme [name]",
Short: "Create a new theme",
- Long: `Create a new theme (skeleton) called [name] in the current directory.
+ Long: `Create a new theme (skeleton) called [name] in ./themes.
New theme is a skeleton. Please add content to the touched files. Add your
name to the copyright line in the license and adjust the theme.toml file
as you see fit.`,