From 729be8074bddb58c9111f32c55cc769e49cd0d5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 14 Jun 2017 10:37:58 +0200 Subject: [PATCH] commands: Adjust docs path --- commands/gendocshelper.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/gendocshelper.go b/commands/gendocshelper.go index ca781242e..6e59d99eb 100644 --- a/commands/gendocshelper.go +++ b/commands/gendocshelper.go @@ -41,7 +41,9 @@ func createGenDocsHelper() *genDocsHelper { return g.generate() } - g.cmd.PersistentFlags().StringVarP(&g.target, "dir", "", "docs/data", "data dir") + // Note that ./docs is a submodule, and writing to that would be suboptimal. + // Let us assume that the default is a sibling project. + g.cmd.PersistentFlags().StringVarP(&g.target, "dir", "", "../hugoDocs/data", "data dir") return g }