prysm-pulse/scripts/update-go-pbs.sh
shayzluf 5df77848bb
Fix go pbs (#4626)
* fix issues

* fix go pbs

* added services

* added services

* remove unused files

* bring back used files

* bring back db proto files

* gaz

* gaz and bring back faucet

* gaz and bring back rpc

* gaz and bring back rpc

* gaz and bring back rpc

* go imports

* remove unused
2020-01-23 16:03:11 +05:30

31 lines
906 B
Bash
Executable File

#!/bin/bash
# Script to copy pb.go files from bazel build folder to appropriate location.
# Bazel builds to bazel-bin/... folder, script copies them back to original folder where .proto is.
bazel build //proto/...
# Get locations of pb.go files.
file_list=()
while IFS= read -d $'\0' -r file ; do
file_list=("${file_list[@]}" "$file")
done < <(find -L $(bazel info bazel-bin)/proto -type f -name "*pb.go" -print0)
arraylength=${#file_list[@]}
searchstring="prysmaticlabs/prysm/"
# Copy pb.go files from bazel-bin to original folder where .proto is.
for (( i=0; i<${arraylength}; i++ ));
do
destination=${file_list[i]#*$searchstring}
chmod 755 "$destination"
cp -R -L "${file_list[i]}" "$destination"
done
# Run goimports on newly generated protos until gogo protobuf's proto-gen-go
# formats imports properly.
# https://github.com/gogo/protobuf/issues/554
goimports -w proto/**/*.pb.go