forked from TrueCloudLab/frostfs-s3-gw
[#413] Fix sync tree script
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
37b1baed41
commit
5e3220a622
1 changed files with 7 additions and 2 deletions
|
@ -2,13 +2,18 @@
|
|||
|
||||
mkdir -p internal/neofs/services/tree 2>/dev/null
|
||||
|
||||
REVISION="d4babb0eb89aff316eca067e219c63a0e2ef349b"
|
||||
REVISION="1678fe44ed2bdac1c3ae3421d2cc500c2be87a98"
|
||||
|
||||
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
|
||||
echo "sync '$file' in tree service"
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue