@@ -76,10 +76,8 @@ Ensure you run this within the root directory of your site.`,
7676 & simpleCommand {
7777 name : "site" ,
7878 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.` ,
8381 run : func (ctx context.Context , cd * simplecobra.Commandeer , r * rootCommand , args []string ) error {
8482 if len (args ) < 1 {
8583 return newUserError ("path needs to be provided" )
@@ -124,11 +122,9 @@ Use ` + "`hugo new [contentPath]`" + ` to create new content.`,
124122 & simpleCommand {
125123 name : "theme" ,
126124 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.` ,
132128 run : func (ctx context.Context , cd * simplecobra.Commandeer , r * rootCommand , args []string ) error {
133129 if len (args ) < 1 {
134130 return newUserError ("theme name needs to be provided" )
0 commit comments