6 lines
110 B
Bash
Executable file
6 lines
110 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
echo "Building protobuf files"
|
|
rm -rf pb/*.pb.go
|
|
protoc --go_out=. pb/*.proto
|