diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /build/scripts/merge_files.py | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'build/scripts/merge_files.py')
-rw-r--r-- | build/scripts/merge_files.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build/scripts/merge_files.py b/build/scripts/merge_files.py new file mode 100644 index 00000000000..d42d6a21392 --- /dev/null +++ b/build/scripts/merge_files.py @@ -0,0 +1,8 @@ +import sys + + +if __name__ == "__main__": + with open(sys.argv[1], "w") as f: + for appended in sys.argv[2:]: + with open(appended) as a: + f.write(a.read()) |