mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-21 19:20:38 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
30 lines
989 B
Bash
Executable File
30 lines
989 B
Bash
Executable File
#!/bin/bash
|
|
. "$(dirname "$0")"/common.sh
|
|
|
|
# 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 query 'attr(testonly, 0, //proto/...)' | xargs bazel build $@
|
|
|
|
file_list=()
|
|
while IFS= read -d $'\0' -r file; do
|
|
file_list=("${file_list[@]}" "$file")
|
|
done < <($findutil -L "$(bazel info bazel-bin)"/proto -type f -regextype sed -regex ".*pb\.\(gw\.\)\?go$" -print0)
|
|
|
|
arraylength=${#file_list[@]}
|
|
searchstring="prysmaticlabs/prysm/v5/"
|
|
|
|
# Copy pb.go files from bazel-bin to original folder where .proto is.
|
|
for ((i = 0; i < arraylength; i++)); do
|
|
color "34" "$destination"
|
|
destination=${file_list[i]#*$searchstring}
|
|
cp -R -L "${file_list[i]}" "$destination"
|
|
chmod 755 "$destination"
|
|
done
|
|
|
|
# Run goimports on newly generated protos
|
|
# formats imports properly.
|
|
# https://github.com/gogo/protobuf/issues/554
|
|
goimports -w proto
|
|
gofmt -s -w proto
|