a6ce3ceb46
* refactor: genetate protobuf * make all
10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
PROTO_ROOT=./proto
|
|
GO_OUTPUT=./go
|
|
|
|
protoc -I=${PROTO_ROOT} --go_out=paths=source_relative:${GO_OUTPUT} $(find ./proto/ -type f -iname "*.proto")
|
|
|