Anton Nikiforov
a0a9b765f3
All checks were successful
DCO action / DCO (pull_request) Successful in 43s
Tests and linters / Tests (1.19) (pull_request) Successful in 34s
Tests and linters / Tests (1.20) (pull_request) Successful in 38s
Tests and linters / Lint (pull_request) Successful in 57s
Tests and linters / Tests with -race (pull_request) Successful in 1m5s
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
36 lines
792 B
Bash
Executable file
36 lines
792 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "usage: ./prepare.sh path/to/frostfs-api"
|
|
exit 1
|
|
fi
|
|
|
|
API_GO_PATH=$(pwd)
|
|
API_PATH=$1
|
|
|
|
# MOVE FILES FROM API REPO
|
|
cd "$API_PATH" || exit 1
|
|
ARGS=$(find ./ -name '*.proto' -not -path './bin/*')
|
|
for file in $ARGS; do
|
|
dir=$(dirname "$file")
|
|
mkdir -p "$API_GO_PATH/$dir/grpc"
|
|
cp -r "$dir"/* "$API_GO_PATH/$dir/grpc"
|
|
done
|
|
|
|
# MODIFY FILES
|
|
cd "$API_GO_PATH" || exit 1
|
|
ARGS2=$(find ./ -name '*.proto' -not -path './bin/*')
|
|
for file in $ARGS2; do
|
|
echo "$file"
|
|
sed -i "s/import\ \"\(.*\)\/\(.*\)\.proto\";/import\ \"\1\/grpc\/\2\.proto\";/" $file
|
|
done
|
|
|
|
cd "$API_GO_PATH" || exit 1
|
|
# COMPILE
|
|
make protoc
|
|
|
|
# REMOVE PROTO DEFINITIONS
|
|
ARGS=$(find ./$prefix -name '*.proto' -not -path './util/*' -not -path './bin/*')
|
|
for file in $ARGS; do
|
|
rm "$file"
|
|
done
|