diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /build/plugins/create_init_py.py | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) | |
download | ydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz |
Revert ymake build from ydb oss export
Diffstat (limited to 'build/plugins/create_init_py.py')
-rw-r--r-- | build/plugins/create_init_py.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/build/plugins/create_init_py.py b/build/plugins/create_init_py.py deleted file mode 100644 index bbe8e8945a..0000000000 --- a/build/plugins/create_init_py.py +++ /dev/null @@ -1,15 +0,0 @@ -import os - -from _common import sort_by_keywords - - -def oncreate_init_py_structure(unit, *args): - if unit.get('DISTBUILD') or unit.get('AUTOCHECK'): - return - target_dir = unit.get('PY_PROTOS_FOR_DIR') - path_list = target_dir.split(os.path.sep)[1:] - inits = [os.path.join("${ARCADIA_BUILD_ROOT}", '__init__.py')] - for i in range(1, len(path_list) + 1): - inits.append(os.path.join("${ARCADIA_BUILD_ROOT}", os.path.join(*path_list[0:i]), '__init__.py')) - unit.ontouch(inits) - |