genproto: use protoc v3.1

This commit is contained in:
Gyu-Ho Lee 2016-11-10 10:43:51 -08:00
parent d6d051c915
commit 784e7f124c
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ if ! [[ "$0" =~ "scripts/genproto.sh" ]]; then
fi
# for now, be conservative about what version of protoc we expect
if ! [[ $(protoc --version) =~ "3.0.0" ]]; then
echo "could not find protoc 3.0.0, is it installed + in PATH?"
if ! [[ $(protoc --version) =~ "3.1.0" ]]; then
echo "could not find protoc 3.1.0, is it installed + in PATH?"
exit 255
fi