Files
EdgeCommon/build/build.sh

20 lines
419 B
Bash
Raw Normal View History

2020-09-13 19:27:47 +08:00
#!/usr/bin/env bash
2020-10-10 11:49:30 +08:00
#rm -f ../pkg/rpc/pb/*.pb.go
2020-09-13 19:27:47 +08:00
protoc --go_out=plugins=grpc:../pkg/rpc --proto_path=../pkg/rpc/protos ../pkg/rpc/protos/*.proto
RESULT=$?
if [ "${RESULT}" != "0" ]; then
exit
fi
RESULT=`protoc --go_out=plugins=grpc:../pkg/rpc --proto_path=../pkg/rpc/protos ../pkg/rpc/protos/models/*.proto`
RESULT=$?
if [ "${RESULT}" != "0" ]; then
exit
fi
# generate rpc.json
./proto-json.sh --quiet
echo "ok"