2023-06-06 06:27:28 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-11-28 13:17:40 +00:00
|
|
|
REVISION="c6a09195c8ef33a3259ea627aeaf4f8a87c800b5"
|
2023-06-06 06:27:28 +00:00
|
|
|
|
|
|
|
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 `.*`
|
2024-11-28 13:17:40 +00:00
|
|
|
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")
|
2023-06-06 06:27:28 +00:00
|
|
|
|
|
|
|
for file in $FILES; do
|
2024-07-11 14:18:28 +00:00
|
|
|
echo "sync '$file' in tree service"
|
2024-11-28 13:17:40 +00:00
|
|
|
curl -s "https://git.frostfs.info/fyrchik/frostfs-node/raw/commit/${REVISION}/pkg/services/tree/${file}" -o "./pool/tree/service/${file}"
|
2023-06-06 06:27:28 +00:00
|
|
|
done
|