summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/new_site.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/new_site.go b/commands/new_site.go
index 6d1677e22..f884a6433 100644
--- a/commands/new_site.go
+++ b/commands/new_site.go
@@ -81,7 +81,7 @@ func (n *newSiteCmd) doNewSite(fs *hugofs.Fs, basepath string, force bool) error
switch {
case !isEmpty && !force:
- return errors.New(basepath + " already exists and is not empty")
+ return errors.New(basepath + " already exists and is not empty. See --force.")
case !isEmpty && force:
all := append(dirs, filepath.Join(basepath, "config."+n.configFormat))