Skip to content

Commit

Permalink
workflow: Format json before processing
Browse files Browse the repository at this point in the history
Signed-off-by: Evgenii Baidakov <[email protected]>
  • Loading branch information
smallhive committed Jul 19, 2023
1 parent 0fa43bc commit ca8d663
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion syncTree.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ REVISION="feaa9eace7098c343598bf08fb50746a1e8d2deb"

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")
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")

for file in $FILES; do
echo ${file}
if [[ $file == *"neofs"* ]]; then
echo "skip '$file'"
continue
Expand Down

0 comments on commit ca8d663

Please sign in to comment.