0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-27 14:16:20 +00:00

Bugfix on integrations/gen_docs_integrations.py ()

Update gen_docs_integrations.py
This commit is contained in:
Fotis Voutsas 2023-09-27 14:15:29 +03:00 committed by GitHub
parent 609e2c4acc
commit d1c048bc5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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])