2018-06-21 15:47:13 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-06-25 17:56:36 +02:00
|
|
|
# This script regenerates the `src/structs_proto.rs` file from `structs.proto`.
|
2018-06-21 15:47:13 +02:00
|
|
|
|
|
|
|
sudo docker run --rm -v `pwd`:/usr/code:z -w /usr/code rust /bin/bash -c " \
|
|
|
|
apt-get update; \
|
|
|
|
apt-get install -y protobuf-compiler; \
|
2018-07-10 20:07:28 +08:00
|
|
|
cargo install --version 2.0.2 protobuf-codegen; \
|
2018-06-25 17:56:36 +02:00
|
|
|
protoc --rust_out . structs.proto"
|
2018-06-21 15:47:13 +02:00
|
|
|
|
2018-07-10 20:07:28 +08:00
|
|
|
sudo chown $USER:$USER *.rs
|
|
|
|
|
2018-06-21 15:47:13 +02:00
|
|
|
mv -f structs.rs ./src/structs_proto.rs
|