Skip to content

Commit

Permalink
docs: move doc generation scripts to subdir
Browse files Browse the repository at this point in the history
Signed-off-by: David Karlsson <david.karlsson@docker.com>
  • Loading branch information
dvdksn committed Jan 31, 2023
1 parent 645395c commit 1e3622c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions docs/go.mod → docs/generate/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/docker/cli/docs
module github.com/docker/cli/docs/generate

// dummy go.mod to avoid dealing with dependencies specific
// to docs generation and not really part of the project.
Expand All @@ -10,4 +10,4 @@ go 1.16
// github.com/docker/cli-docs-tool v0.5.0
//)
//
//replace github.com/docker/cli v0.0.0+incompatible => ../
//replace github.com/docker/cli v0.0.0+incompatible => ../../
File renamed without changes.
4 changes: 2 additions & 2 deletions scripts/docs/generate-yaml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ trap clean EXIT
# install cli-docs-tool and copy docs/tools.go in root folder
# to be able to fetch the required depedencies
go mod edit -modfile=vendor.mod -require=github.com/docker/cli-docs-tool@${CLI_DOCS_TOOL_VERSION}
cp docs/tools.go .
cp docs/generate/tools.go .
# update vendor
./scripts/vendor update
# build docsgen
go build -mod=vendor -modfile=vendor.mod -tags docsgen -o /tmp/docsgen ./docs/generate.go
go build -mod=vendor -modfile=vendor.mod -tags docsgen -o /tmp/docsgen ./docs/generate/generate.go
)

mkdir -p docs/yaml
Expand Down

0 comments on commit 1e3622c

Please sign in to comment.