Skip to content

Commit

Permalink
Makefile: Fix sync-tree (#941)
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-khimov authored Mar 26, 2024
2 parents 20f55c4 + 8fafdeb commit 73f34fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syncTree.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REVISION="feaa9eace7098c343598bf08fb50746a1e8d2deb"

echo "tree service revision ${REVISION}"

FILES=$(curl -s https://github.com/nspcc-dev/neofs-node/tree/${REVISION}/pkg/services/tree | jq | sed -n "s,.*\"pkg/services/tree/\(.*\.pb\.go\)\".*,\1,p")
FILES=$(curl -s -H "Accept: application/json" https://github.com/nspcc-dev/neofs-node/tree/${REVISION}/pkg/services/tree | jq | sed -n "s,.*\"pkg/services/tree/\(.*\.pb\.go\)\".*,\1,p")

for file in $FILES; do
if [[ $file == *"neofs"* ]]; then
Expand Down

0 comments on commit 73f34fa

Please sign in to comment.