diff options
author | monster <monster@ydb.tech> | 2022-07-07 14:41:37 +0300 |
---|---|---|
committer | monster <monster@ydb.tech> | 2022-07-07 14:41:37 +0300 |
commit | 06e5c21a835c0e923506c4ff27929f34e00761c2 (patch) | |
tree | 75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /build/scripts/writer.py | |
parent | 03f024c4412e3aa613bb543cf1660176320ba8f4 (diff) | |
download | ydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz |
fix ya.make
Diffstat (limited to 'build/scripts/writer.py')
-rw-r--r-- | build/scripts/writer.py | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/build/scripts/writer.py b/build/scripts/writer.py deleted file mode 100644 index 21bb3006e5..0000000000 --- a/build/scripts/writer.py +++ /dev/null @@ -1,40 +0,0 @@ -import sys -import argparse - -import process_command_files as pcf - - -def parse_args(): - args = pcf.get_args(sys.argv[1:]) - parser = argparse.ArgumentParser() - parser.add_argument('-f', '--file', dest='file_path') - parser.add_argument('-a', '--append', action='store_true', default=False) - parser.add_argument('-Q', '--quote', action='store_true', default=False) - parser.add_argument('-s', '--addspace', action='store_true', default=False) - parser.add_argument('-c', '--content', action='append', dest='content') - parser.add_argument('-m', '--content-multiple', nargs='*', dest='content') - parser.add_argument('-P', '--path-list', action='store_true', default=False) - return parser.parse_args(args) - - -def smart_shell_quote(v): - if v is None: - return None - if ' ' in v or '"' in v or "'" in v: - return "\"{0}\"".format(v.replace('"', '\\"')) - return v - -if __name__ == '__main__': - args = parse_args() - open_type = 'a' if args.append else 'w' - - content = args.content - if args.quote: - content = [smart_shell_quote(ln) for ln in content] if content is not None else None - content = '\n'.join(content) - - with open(args.file_path, open_type) as f: - if args.addspace: - f.write(' ') - if content is not None: - f.write(content) |