This is an automated email from the ASF dual-hosted git repository. nferraro pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 110f8bf5b56041f3600c78cc8102718f7638717d Author: nicolaferraro <ni.ferr...@gmail.com> AuthorDate: Tue Feb 16 10:30:14 2021 +0100 chore: move go module files in generator --- docs/README.md | 4 ++-- go.mod => docs/generator/go.mod | 2 +- go.sum => docs/generator/go.sum | 0 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index ff87f5d..4f51d31 100644 --- a/docs/README.md +++ b/docs/README.md @@ -7,8 +7,8 @@ This section contains the Kamelet catalog website, auto-generated from the sourc To generate the adoc and svg files for the website (you need `go`): ``` -# From the /docs directory -go run ./generator/ ../ ./modules/ROOT/ +# From the /docs/generator directory +go run . ../../ ../modules/ROOT/ ``` To preview the website: diff --git a/go.mod b/docs/generator/go.mod similarity index 64% rename from go.mod rename to docs/generator/go.mod index da6292e..85f55e1 100644 --- a/go.mod +++ b/docs/generator/go.mod @@ -1,4 +1,4 @@ -module github.com/apache/camel-kamelets +module github.com/apache/camel-kamelets/docs/generator go 1.14 diff --git a/go.sum b/docs/generator/go.sum similarity index 100% rename from go.sum rename to docs/generator/go.sum