9 lines
191 B
Bash
Executable file
9 lines
191 B
Bash
Executable file
#!/bin/bash
|
|
|
|
protoc \
|
|
--proto_path=${PWD}/proto \
|
|
--proto_path=${PWD}/bufbuild \
|
|
--go_out=${PWD} \
|
|
--go-grpc_out=${PWD} \
|
|
--validate_out="lang=rust:${PWD}" \
|
|
${PWD}/proto/dcache/dcache.proto
|