We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d0e751 commit 6653bebCopy full SHA for 6653beb
1 file changed
.github/scripts/helpers.py
@@ -2,6 +2,7 @@
2
3
import json
4
import os
5
+import sys
6
7
import git
8
import yaml
@@ -43,6 +44,6 @@ def index_compdb(file_contents):
43
44
"""Index the compilation database."""
45
result = set()
46
for item in file_contents:
- filename = os.path.join(item["directory"], item["file"])
47
+ filename = os.path.normpath(os.path.join(item["directory"], item["file"]))
48
result.add(filename)
49
return result
0 commit comments