mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
build.py removes single.md after build
This commit is contained in:
parent
0b39a64a6e
commit
403d56a172
@ -109,7 +109,8 @@ def build_single_page_version(lang, args, nav, cfg):
|
|||||||
extra['single_page'] = True
|
extra['single_page'] = True
|
||||||
extra['is_amp'] = False
|
extra['is_amp'] = False
|
||||||
|
|
||||||
with open(os.path.join(args.docs_dir, lang, 'single.md'), 'w') as single_md:
|
single_md_path = os.path.join(args.docs_dir, lang, 'single.md')
|
||||||
|
with open(single_md_path, 'w') as single_md:
|
||||||
concatenate(lang, args.docs_dir, single_md, nav)
|
concatenate(lang, args.docs_dir, single_md, nav)
|
||||||
|
|
||||||
with util.temp_dir() as site_temp:
|
with util.temp_dir() as site_temp:
|
||||||
@ -221,3 +222,7 @@ def build_single_page_version(lang, args, nav, cfg):
|
|||||||
subprocess.check_call(' '.join(create_pdf_command), shell=True)
|
subprocess.check_call(' '.join(create_pdf_command), shell=True)
|
||||||
|
|
||||||
logging.info(f'Finished building single page version for {lang}')
|
logging.info(f'Finished building single page version for {lang}')
|
||||||
|
|
||||||
|
if os.path.exists(single_md_path):
|
||||||
|
os.unlink(single_md_path)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user