mirror of https://github.com/certusone/wasmd.git
33 lines
802 B
Bash
Executable File
33 lines
802 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
|
|
protoc_install_proto_gen_doc() {
|
|
echo "Installing protobuf protoc-gen-doc plugin"
|
|
(go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@latest 2> /dev/null)
|
|
}
|
|
|
|
echo "Generating gogo proto code"
|
|
cd proto
|
|
proto_dirs=$(find ./cosmwasm -path -prune -o -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq)
|
|
for dir in $proto_dirs; do
|
|
for file in $(find "${dir}" -maxdepth 1 -name '*.proto'); do
|
|
if grep "option go_package" $file &> /dev/null ; then
|
|
buf generate --template buf.gen.gogo.yml $file
|
|
fi
|
|
done
|
|
done
|
|
|
|
protoc_install_proto_gen_doc
|
|
|
|
echo "Generating proto docs"
|
|
buf generate --template buf.gen.doc.yml
|
|
|
|
cd ..
|
|
|
|
# move proto files to the right places
|
|
cp -r github.com/CosmWasm/wasmd/* ./
|
|
rm -rf github.com
|
|
|
|
go mod tidy
|