frostfs-s3-gw/syncTree.sh

20 lines
652 B
Bash
Raw Normal View History

#!/bin/bash
mkdir -p internal/neofs/services/tree 2>/dev/null
REVISION="74c861342e19611dba534bb719aafda757f0d009"
echo "tree service revision ${REVISION}"
FILES=$(curl -s https://github.com/nspcc-dev/neofs-node/tree/${REVISION}/pkg/services/tree | sed -n "s,.*\"/nspcc-dev/neofs-node/blob/${REVISION}/pkg/services/tree/\(.*\.pb\.go\)\".*,\1,p")
for file in $FILES; do
if [[ $file == *"neofs"* ]]; then
echo "skip '$file'"
continue
else
echo "sync '$file' in tree service"
fi
curl -s "https://raw.githubusercontent.com/nspcc-dev/neofs-node/${REVISION}/pkg/services/tree/${file}" -o "./internal/neofs/services/tree/${file}"
done