You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
401 B
15 lines
401 B
|
1 year ago
|
#/bin/bash
|
||
|
|
for f in `ls`
|
||
|
|
do
|
||
|
|
if [[ $f = *.sh ]];
|
||
|
|
then
|
||
|
|
continue
|
||
|
|
fi
|
||
|
|
echo $f
|
||
|
|
protoc --gogofaster_out=. $f
|
||
|
|
done
|
||
|
|
#protoc -I=. --gogofaster_out=. *.proto
|
||
|
|
# protoc --go_out=. *.proto
|
||
|
|
#sed -i 's/,omitempty//g' ../common.pb.go # web.proro文件只用和客户端的http json格式消息传输 强行去掉json的omitempty参数, 不然客户端收到的数据无法正常解析
|
||
|
|
|