mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
9 lines
261 B
Bash
Executable file
9 lines
261 B
Bash
Executable file
set -e
|
|
|
|
# A script to regenerate protobuf documentation markdown
|
|
# using "go get -u github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc"
|
|
|
|
docker run --rm \
|
|
-v $(pwd)/docs:/out \
|
|
-v $(pwd):/protos \
|
|
pseudomuto/protoc-gen-doc --doc_opt=markdown,docs.md
|