mirror of https://github.com/docker/cli.git
6 lines
171 B
Bash
6 lines
171 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
go build -o build/yaml-docs-generator github.com/docker/cli/docs/yaml
|
||
|
mkdir docs/yaml/gen
|
||
|
build/yaml-docs-generator --root $(pwd) --target $(pwd)/docs/yaml/gen
|