summaryrefslogtreecommitdiff
path: root/scripts/generate_plugins_path.py
blob: 17a38f123bd4c63041cd8b4e9f72039274d644da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python3

import argparse
import os
import json

if __name__ == "__main__":
    parser = argparse.ArgumentParser()
    parser.add_argument(dest="output", help="Output file")
    parser.add_argument(dest="plugins", nargs=argparse.REMAINDER, help="The list of plugins")

    options = parser.parse_args()

    all_paths = set()
    for plugin in options.plugins:
        all_paths.add(os.path.dirname(plugin))

    with open(options.output, "w") as f:
        json.dump(list(all_paths), f, indent=4, sort_keys=True)