Skip to content

Commit ddca340

Browse files
committed
fix: macos tests
1 parent fd5b7cd commit ddca340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Engine/Source/Common/Src/FileSystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Common::Internal {
99
std::filesystem::path GetUnixStylePath(const std::string& inPath)
1010
{
11-
return Common::StringUtils::Replace(std::filesystem::weakly_canonical(inPath).string(), "\\", "/");
11+
return StringUtils::Replace(inPath, "\\", "/");
1212
}
1313

1414
std::filesystem::path GetUnixStylePath(const std::filesystem::path& inPath)

0 commit comments

Comments
 (0)