mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
13 lines
242 B
Python
Executable File
13 lines
242 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
import util
|
|
|
|
if __name__ == '__main__':
|
|
flag_name = sys.argv[1]
|
|
path = sys.argv[2]
|
|
meta, content = util.read_md_file(path)
|
|
meta[flag_name] = True
|
|
util.write_md_file(path, meta, content)
|