@@ -76,10 +76,8 @@ Ensure you run this within the root directory of your site.`,
76
76
& simpleCommand {
77
77
name : "site" ,
78
78
use : "site [path]" ,
79
- short : "Create a new site (skeleton)" ,
80
- long : `Create a new site in the provided directory.
81
- The new site will have the correct structure, but no content or theme yet.
82
- Use ` + "`hugo new [contentPath]`" + ` to create new content.` ,
79
+ short : "Create a new site" ,
80
+ long : `Create a new site at the specified path.` ,
83
81
run : func (ctx context.Context , cd * simplecobra.Commandeer , r * rootCommand , args []string ) error {
84
82
if len (args ) < 1 {
85
83
return newUserError ("path needs to be provided" )
@@ -124,11 +122,9 @@ Use ` + "`hugo new [contentPath]`" + ` to create new content.`,
124
122
& simpleCommand {
125
123
name : "theme" ,
126
124
use : "theme [name]" ,
127
- short : "Create a new theme (skeleton)" ,
128
- long : `Create a new theme (skeleton) called [name] in ./themes.
129
- New theme is a skeleton. Please add content to the touched files. Add your
130
- name to the copyright line in the license and adjust the theme.toml file
131
- according to your needs.` ,
125
+ short : "Create a new theme" ,
126
+ long : `Create a new theme with the specified name in the ./themes directory.
127
+ This generates a functional theme including template examples and sample content.` ,
132
128
run : func (ctx context.Context , cd * simplecobra.Commandeer , r * rootCommand , args []string ) error {
133
129
if len (args ) < 1 {
134
130
return newUserError ("theme name needs to be provided" )
0 commit comments