5ee988ccd8
* Add common message types and update proto gen script * Update proto gen script to generate pulsar proto code * Upgrade direct deps * Populate params and genesis files * Setup keeper files * Setup module files with depinject and autocli * Add placeholder keeper methods * Integrate bond module into the chain
31 lines
743 B
Bash
Executable File
31 lines
743 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Enter the proto files dir
|
|
cd proto
|
|
|
|
echo "Generating gogo proto code"
|
|
proto_dirs=$(find . -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
|
|
# Check if the go_package in the file is pointing to laconic2d
|
|
if grep -q "option go_package.*laconic2d" "$file"; then
|
|
buf generate --template buf.gen.gogo.yaml "$file"
|
|
fi
|
|
done
|
|
done
|
|
|
|
# TODO: Check if required
|
|
echo "Generating pulsar proto code"
|
|
buf generate --template buf.gen.pulsar.yaml
|
|
|
|
# Go back to root dir
|
|
cd ..
|
|
|
|
# Copy over the generated files and cleanup
|
|
cp -r git.vdb.to/cerc-io/laconic2d/* ./
|
|
rm -rf git.vdb.to
|
|
|
|
go mod tidy
|