diff options
author | alexv-smirnov <[email protected]> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <[email protected]> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /build/scripts/kt_copy.py | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) |
Revert ymake build from ydb oss export
Diffstat (limited to 'build/scripts/kt_copy.py')
-rw-r--r-- | build/scripts/kt_copy.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/build/scripts/kt_copy.py b/build/scripts/kt_copy.py deleted file mode 100644 index f833c24ef41..00000000000 --- a/build/scripts/kt_copy.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python -import sys - -if __name__ == '__main__': - source = sys.argv[1] - destination = sys.argv[2] - source_root = sys.argv[3] - build_root = sys.argv[4] - with open(source, 'r') as afile: - src_content = afile.read() - src_content = src_content.replace(source_root + '/', "") - result_srcs = "" - for line in src_content.split("\n"): - if not line.startswith(build_root): - result_srcs += line + "\n" - with open(destination, 'w') as afile: - afile.write(result_srcs) |