summaryrefslogtreecommitdiff
path: root/build_protobufs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build_protobufs.sh')
-rwxr-xr-xbuild_protobufs.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/build_protobufs.sh b/build_protobufs.sh
index 59136c6..fd1e2d1 100755
--- a/build_protobufs.sh
+++ b/build_protobufs.sh
@@ -1,4 +1,7 @@
#!/bin/bash
+find src/test/java -name '*.proto' -exec \
+ protoc {} --java_out=src/test/java \;
+
find src/main/java -name '*.proto' -exec \
protoc {} --java_out=src/main/java \;