Skip to content

Commit 9986ec8

Browse files
committed
make uri's canonical
1 parent 5815b57 commit 9986ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compatibility/compatibility.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ namespace compatibility
100100
uri = std::regex_replace(uri, std::regex(R"(samples\/[^\/]+)"), KIT_FOLDER);
101101
uri = std::regex_replace(uri, std::regex(R"(\.ts$)"), ".cpp");
102102

103-
json[key] = std::filesystem::path{ uri }.string();
103+
json[key] = std::filesystem::canonical(uri).string();
104104

105105
++jsonIter;
106106
}

0 commit comments

Comments
 (0)