commit cf4786ddfae40a3a0d00e52f4861a2c7ee19e243
parent 2d28c40ef9842ab7cfb9b307bfc07b1d11c7aca8
Author: Daiki Mizukami <tesaguriguma@gmail.com>
Date: Sun, 13 Mar 2022 21:13:42 +0900
chore(gen_vimdoc): call `delete_lines_below` only if the file exists
Previously, `delete_lines_below` would raise `FileNotFoundError` when
adding a new file to `CONFIG` and you had to manually write a file with
help tag of the first section as placeholder. This change relieves you
of that need.
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py
@@ -1116,7 +1116,8 @@ def main(config, args):
doc_file = os.path.join(base_dir, 'runtime', 'doc',
CONFIG[target]['filename'])
- delete_lines_below(doc_file, first_section_tag)
+ if os.path.exists(doc_file):
+ delete_lines_below(doc_file, first_section_tag)
with open(doc_file, 'ab') as fp:
fp.write(docs.encode('utf8'))