Skip to content

Commit

Permalink
Move journal protos to their own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
aaudiber committed Nov 23, 2015
1 parent 593ff6e commit aaa1bcd
Show file tree
Hide file tree
Showing 3 changed files with 2,462 additions and 2,269 deletions.
4 changes: 2 additions & 2 deletions bin/tachyon
Expand Up @@ -285,8 +285,8 @@ elif [[ ${COMMAND} == "thriftGen" ]]; then
exit 0
elif [[ ${COMMAND} == "protoGen" ]]; then
rm -rf ${bin}/../servers/src/main/java/tachyon/proto
for src_file in $(ls ${bin}/../servers/src/proto); do
protoc --java_out=${bin}/../servers/src/main/java --proto_path=${bin}/../servers/src/proto ${bin}/../servers/src/proto/${src_file}
for src_file in $(find ${bin}/../servers/src/proto -type f); do
protoc --java_out=${bin}/../servers/src/main/java --proto_path=${bin}/../servers/src/proto ${src_file}
done
exit 0
elif [[ ${COMMAND} == "clearCache" ]]; then
Expand Down

0 comments on commit aaa1bcd

Please sign in to comment.