frostfs-sdk-go/syncTree.sh
Denis Kirillov 0ee3fcc18f [#XX] pool/tree: Add new burned methods
Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
2024-06-21 17:28:28 +03:00

19 lines
768 B
Bash
Executable file

#!/bin/bash
REVISION="61c920919bba627cb4bb661afe61243649ec06a6"
echo "tree service revision ${REVISION}"
# regexp below find all link to source code files which end with ".pb.go" and retrieve the file names
# we use `[^.]*` as non greedy workaround for `.*`
FILES=$(curl -s https://git.frostfs.info/fyrchik/frostfs-node/src/commit/${REVISION}/pkg/services/tree | sed -n "s,.*\"/fyrchik/frostfs-node/src/commit/${REVISION}/pkg/services/tree/\([^.]*\.pb\.go\)\".*,\1,p")
for file in $FILES; do
if [[ $file == *"frostfs"* ]]; then
echo "skip '$file'"
continue
else
echo "sync '$file' in tree service"
fi
curl -s "https://git.frostfs.info/fyrchik/frostfs-node/raw/commit/${REVISION}/pkg/services/tree/${file}" -o "./pool/tree/service/${file}"
done