Skip to content

Commit cfc1b50

Browse files
Fix missed root/ya on library import (#784)
1 parent 27a4124 commit cfc1b50

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

ya

+11-11
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Find a suitable python interpreter
1010
for cmd in python3 python; do
11-
command -v > /dev/null $cmd && exec `command -v $cmd` $0 "$@"
11+
command -v > /dev/null $cmd && exec "$(command -v $cmd)" "$0" "$@"
1212
done
1313

1414
echo "Python interpreter is not found in this system, please, install python" >&2
@@ -34,33 +34,33 @@ REGISTRY_ENDPOINT = os.environ.get("YA_REGISTRY_ENDPOINT", "https://devtools-reg
3434
PLATFORM_MAP = {
3535
"data": {
3636
"darwin": {
37-
"md5": "9eb15ad1ec74b8b1926d03630b4ed35a",
37+
"md5": "a1ea38d1da27ad79942f34a367d8ca56",
3838
"urls": [
39-
f"{REGISTRY_ENDPOINT}/5545697562"
39+
f"{REGISTRY_ENDPOINT}/5572014880"
4040
]
4141
},
4242
"darwin-arm64": {
43-
"md5": "3e2acd9eba7df61abfef440954624d73",
43+
"md5": "5bab9dad482a29025aeacdcd20928ffc",
4444
"urls": [
45-
f"{REGISTRY_ENDPOINT}/5545697168"
45+
f"{REGISTRY_ENDPOINT}/5572013593"
4646
]
4747
},
4848
"linux-aarch64": {
49-
"md5": "7542537fcf90a4fb3a4fe612bcb2f251",
49+
"md5": "bfc7b61199813ebbfcee73286ecf48e5",
5050
"urls": [
51-
f"{REGISTRY_ENDPOINT}/5545696484"
51+
f"{REGISTRY_ENDPOINT}/5572012914"
5252
]
5353
},
5454
"win32-clang-cl": {
55-
"md5": "0c380c91891731860965887af58f6fec",
55+
"md5": "74fd7f13a530d1744771bfdf9dfc3161",
5656
"urls": [
57-
f"{REGISTRY_ENDPOINT}/5545698486"
57+
f"{REGISTRY_ENDPOINT}/5572015235"
5858
]
5959
},
6060
"linux": {
61-
"md5": "428c3f0525c9220e83a5d7cb9ab690eb",
61+
"md5": "689451d3f9f1d8d70e4e851594b10a9a",
6262
"urls": [
63-
f"{REGISTRY_ENDPOINT}/5545699155"
63+
f"{REGISTRY_ENDPOINT}/5572015854"
6464
]
6565
}
6666
}

ydb/ci/increment.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [ -z "${MAIN_ROOT}" ]; then
1919
fi
2020
echo "Target Main root: ${MAIN_ROOT}"
2121

22-
rsync -r $LIB_ROOT/build $LIB_ROOT/certs $LIB_ROOT/cmake $LIB_ROOT/contrib $LIB_ROOT/library $LIB_ROOT/scripts $LIB_ROOT/tools $LIB_ROOT/util $LIB_ROOT/vendor $LIB_ROOT/yt $MAIN_ROOT \
22+
rsync -r $LIB_ROOT/ya $LIB_ROOT/build $LIB_ROOT/certs $LIB_ROOT/cmake $LIB_ROOT/contrib $LIB_ROOT/library $LIB_ROOT/scripts $LIB_ROOT/tools $LIB_ROOT/util $LIB_ROOT/vendor $LIB_ROOT/yt $MAIN_ROOT \
2323
--filter '- **/a.yaml' --filter '- **/.arcignore' --filter '- **/.yandex_meta/' --filter '- contrib/ydb/' --filter '- build/internal/' --filter '- build/ext_mapping.conf.json' \
2424
--filter '- **/CMakeLists*.txt' --delete
2525

0 commit comments

Comments
 (0)