We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96d4a8d commit 0af2939Copy full SHA for 0af2939
header_matcher.py
@@ -25,7 +25,7 @@ def match_headers(mapping1, mapping2):
25
# Load the two header mappings
26
with open("output_header_mapping_godot.json", "r") as file:
27
mapping_godot = json.load(file)
28
- file_types_mapping_godot_cpp_gen = map_header_files(os.getcwd() / "gen" / "include")
+ file_types_mapping_godot_cpp_gen = map_header_files(os.path.join(os.getcwd(), "gen", "include"))
29
matches = match_headers(file_types_mapping_godot_cpp_gen, mapping_godot)
30
31
# Optionally, you can save the matches to a file
0 commit comments