diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-16 10:49:55 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-16 10:49:55 +0300 |
commit | 9a31a385c5e03d4b4269db196fbef002b1553a58 (patch) | |
tree | cb2d16da987534948a9854e57226fc0308105767 | |
parent | 8d9437fe29633093317bdc1d94859ac27be980aa (diff) | |
download | ydb-9a31a385c5e03d4b4269db196fbef002b1553a58.tar.gz |
intermediate changes
ref:95c60291d658ad341747aeddab52d6a6501e5459
-rw-r--r-- | build/plugins/nots.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/plugins/nots.py b/build/plugins/nots.py index dbdfd62e11b..ad764e0acac 100644 --- a/build/plugins/nots.py +++ b/build/plugins/nots.py @@ -1,7 +1,7 @@ import os.path import ytest -from _common import to_yesno, resolve_common_const +from _common import to_yesno, resolve_common_const, rootrel_arc_src from lib.nots.package_manager import manager from lib.nots.typescript import TsConfig @@ -57,7 +57,7 @@ def _setup_eslint(unit): lint_files = ytest.get_values_list(unit, '_TS_LINT_SRCS_VALUE') resolved_files = [] for path in lint_files: - resolved = unit.resolve(unit.resolve_arc_path(resolve_common_const(path))) + resolved = rootrel_arc_src(resolve_common_const(path), unit) resolved_files.append(resolved) if resolved_files: |