mirror of
https://github.com/netdata/netdata.git
synced 2025-04-27 14:16:20 +00:00
Bugfix on integrations/gen_docs_integrations.py (#16059)
Update gen_docs_integrations.py
This commit is contained in:
parent
609e2c4acc
commit
d1c048bc5f
1 changed files with 1 additions and 1 deletions
|
@ -304,7 +304,7 @@ def make_symlinks(symlink_dict):
|
|||
"""
|
||||
for element in symlink_dict:
|
||||
# Remove the README to prevent it being a normal file
|
||||
Path.unlink(f'{element}/README.md')
|
||||
Path(f'{element}/README.md').unlink()
|
||||
# and then make a symlink to the actual markdown
|
||||
Path(f'{element}/README.md').symlink_to(symlink_dict[element])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue