Skip to content

Commit 14da45d

Browse files
authored
Update to protobuf ~> 0.14 (#47)
* remove googleapis submodule * update deps * remove protobuf_generate * regenerate protos * match grpc versions * TEMP: use un-versioned fix * add trailing line * update protobuf * re-add newline at end * update protobuf
1 parent ce040a0 commit 14da45d

File tree

9 files changed

+61
-457
lines changed

9 files changed

+61
-457
lines changed

.gitmodules

-3
This file was deleted.

.tool-versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.15.7-otp-25
2-
erlang 25.1.1
1+
elixir 1.15.7-otp-26
2+
erlang 26.1.2

examples/helloworld/.tool-versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.15.7-otp-25
2-
erlang 25.1.1
1+
elixir 1.15.7-otp-26
2+
erlang 26.1.2
+5-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
#!/bin/bash
22

3-
PROTOS=("
4-
priv/protos/helloworld.proto
5-
")
6-
7-
for file in $PROTOS; do
8-
mix protobuf.generate \
9-
--output-path=./lib/protos \
10-
--include-docs=true \
11-
--generate-descriptors=true \
12-
--include-path=priv/protos/ \
13-
--include-path=./priv/protos/googleapis \
14-
--plugin=ProtobufGenerate.Plugins.GRPC \
15-
--one-file-per-module \
16-
$file
17-
done
3+
protoc -I priv/protos \
4+
--elixir_out=plugins=grpc:./lib/protos \
5+
--elixir_opt=include_docs=true \
6+
--elixir_out=plugins=grpc,gen_descriptors=true:lib/protos \
7+
priv/protos/*.proto

0 commit comments

Comments
 (0)