mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
fix: resulting files path
This commit is contained in:
parent
0636e249a1
commit
476b488301
@ -97,9 +97,9 @@ def process_folder(root_path:str, name: str) -> None:
|
||||
process_file(root_path, os.path.join(root, f))
|
||||
|
||||
def generate_cmake_flags_files(root_path: str) -> None:
|
||||
output_file_name: str = root_path + "docs/en/development/cmake-in-clickhouse.md"
|
||||
header_file_name: str = root_path + "docs/_includes/cmake_in_clickhouse_header.md"
|
||||
footer_file_name: str = root_path + "docs/_includes/cmake_in_clickhouse_footer.md"
|
||||
output_file_name: str = os.path.join(root_path, "docs/en/development/cmake-in-clickhouse.md")
|
||||
header_file_name: str = os.path.join(root_path, "docs/_includes/cmake_in_clickhouse_header.md")
|
||||
footer_file_name: str = os.path.join(root_path, "docs/_includes/cmake_in_clickhouse_footer.md")
|
||||
|
||||
process_file(root_path, "CMakeLists.txt")
|
||||
process_file(root_path, "programs/CMakeLists.txt")
|
||||
|
Loading…
Reference in New Issue
Block a user