SemanticSearchPOC / tools /dev /grpc_regenerate.sh
KevinStephenson
Adding in weaviate code
b110593
raw
history blame
861 Bytes
#!/usr/bin/env bash
set -euo pipefail
GEN_DIR=./grpc/generated
OUT_DIR="$GEN_DIR/protocol"
echo "Generating Go protocol stubs..."
rm -fr $OUT_DIR && mkdir -p $OUT_DIR && cd $GEN_DIR && protoc \
--proto_path=../proto \
--go_out=paths=source_relative:protocol \
--go-grpc_out=paths=source_relative:protocol \
../proto/v0/*.proto && protoc \
--proto_path=../proto \
--go_out=paths=source_relative:protocol \
--go-grpc_out=paths=source_relative:protocol \
../proto/v1/*.proto
cd - && sed -i '' '/versions:/, /source: .*/d' ./grpc/generated/protocol/**/*.go
go run ./tools/license_headers/main.go
goimports -w $OUT_DIR
# running gofumpt twice is on purpose
# it doesn't work for the first time only after second run the formatting is proper
gofumpt -w $OUT_DIR
gofumpt -w $OUT_DIR
echo "Success"