mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-22 19:31:29 +00:00
5 lines
275 B
Bash
5 lines
275 B
Bash
#!/bin/bash
|
|
set -e
|
|
echo "Cleaning up existing .pb files"
|
|
rm -rf ../common/proto/* go/eqproto/* csharp/proto/*.cs java/eqproto/*.java python/proto/*pb2*
|
|
protoc --go_out=go/eqproto --python_out=python/proto --csharp_out=csharp/proto --java_out=java -I ../common/ message.proto |