aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzaverden <zaverden@yandex-team.com>2023-09-21 16:05:06 +0300
committerzaverden <zaverden@yandex-team.com>2023-09-21 16:28:13 +0300
commit4dc08f464b9d71f6a75cf3ce9517fc733529e69b (patch)
treea98f2663c84b8153edffd8617e2a5b2c69d4b9e6
parent082987dd3ffbf87d003bc010bac8a0f326836b4c (diff)
downloadydb-4dc08f464b9d71f6a75cf3ce9517fc733529e69b.tar.gz
fix(TS_FILES): disable include processor for inputs
Файлы проходили через include processor, которы по дефолту из них формировал аутпуты, чего не должно было происходить
-rw-r--r--build/plugins/nots.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/plugins/nots.py b/build/plugins/nots.py
index 3d8edcf47b..9aaf110ca2 100644
--- a/build/plugins/nots.py
+++ b/build/plugins/nots.py
@@ -592,8 +592,8 @@ def _add_ts_resources_to_test_record(unit, test_record):
@_with_report_configure_error
def on_ts_files(unit, *files):
+ new_cmds = ['$COPY_CMD ${{input;context=TEXT:"{0}"}} ${{output;noauto:"{0}"}}'.format(f) for f in files]
all_cmds = unit.get("_TS_FILES_COPY_CMD")
- new_cmds = ['$COPY_CMD ${{input:"{0}"}} ${{output:"{0}"}}'.format(f) for f in files]
if all_cmds:
new_cmds.insert(0, all_cmds)
unit.set(["_TS_FILES_COPY_CMD", " && ".join(new_cmds)])