mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-01-04 00:40:12 +08:00
6 lines
187 B
Bash
6 lines
187 B
Bash
|
#!/bin/bash
|
||
|
# 递归编译proto
|
||
|
lang='python'
|
||
|
patch=$(cd $(dirname $0); pwd)
|
||
|
find $patch -name '*.proto' -exec protoc -I $patch --${lang}_out=. {} \; -exec echo comp {} \;
|
||
|
echo 'all Done'
|