finclip-app-manager/infrastructure/protobuf/make.sh

13 lines
247 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

cd proto
protoc -I ./ *.proto --go_out=plugins=grpc:.
if [ $? -ne 0 ];then
echo "生成go代码失败"
else
cd ../golang
rm -rf *.go
mv ../proto/*.go .
sed -i '' 's/,omitempty//g' *.go
echo "生成go代码成功"
fi