mirror of
https://github.com/lightninglabs/loop
synced 2024-11-04 06:00:21 +00:00
27 lines
616 B
Bash
Executable File
27 lines
616 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# generate compiles the *.pb.go stubs from the *.proto files.
|
|
function generate() {
|
|
# Generate the gRPC bindings for all proto files.
|
|
for file in ./*.proto
|
|
do
|
|
protoc -I/usr/local/include -I. -I.. \
|
|
--go_out . --go_opt paths=source_relative \
|
|
--go-grpc_out . --go-grpc_opt paths=source_relative \
|
|
"${file}"
|
|
done
|
|
}
|
|
|
|
# format formats the *.proto files with the clang-format utility.
|
|
function format() {
|
|
find . -name "*.proto" -print0 | xargs -0 clang-format --style=file -i
|
|
}
|
|
|
|
# Compile and format the swapserverrpc package.
|
|
pushd swapserverrpc
|
|
format
|
|
generate
|
|
popd
|