summaryrefslogtreecommitdiff
path: root/build_protobufs.sh
diff options
context:
space:
mode:
authorKjetil Ørbekk <kjetil.orbekk@gmail.com>2012-03-28 17:14:22 +0200
committerKjetil Ørbekk <kjetil.orbekk@gmail.com>2012-03-28 17:14:22 +0200
commit8a1c8340be7151ba38eca59597b4eda04ebdcc9a (patch)
tree81f92375037796b480045ea618d26fb05cbb835b /build_protobufs.sh
parentd317a85a7b76ee94ebc31c218dc877bfadd54902 (diff)
Add functional test.
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 \;