()
| 63 | |
| 64 | |
| 65 | def main(): |
| 66 | json_path = 'docs/ScriptsPath.json' |
| 67 | data = read_json(json_path) |
| 68 | scripts = data.get('scripts', []) |
| 69 | start_tag = "<!--RELATED-->" |
| 70 | end_tag = "<!--RELATED-END-->" |
| 71 | for script in scripts: |
| 72 | process_script(script, scripts, start_tag, end_tag, script.get('group')) |
| 73 | |
| 74 | |
| 75 | if __name__ == "__main__": |
no test coverage detected