Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b24e565 commit 0b5c73aCopy full SHA for 0b5c73a
1 file changed
python/ql/src/meta/ClassHierarchy/process-mrva-results.py
@@ -83,7 +83,7 @@ def parse_from_file(path: Path) -> set:
83
84
def gather_from_bqrs_results():
85
with CodeQL() as codeql:
86
- for f in glob.glob(f"{sys.argv[1]}/**/results.bqrs", recursive=True):
+ for f in glob.glob(f"{sys.argv[1]}/**.bqrs", recursive=True):
87
print(f"Processing {f}")
88
89
json_data = codeql.command(["bqrs", "decode", "--format=json", f])
0 commit comments