Skip to content

Commit

Permalink
Fix exceptions on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jspelletier committed Oct 10, 2024
1 parent 1629aa2 commit 43dc98a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sharpmake/ExtensionMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public static string GetVisualStudioVCRootPath(this DevEnv visualVersion)
string vsDir = visualVersion.GetVisualStudioDir();
if (visualVersion > DevEnv.vs2015)
{
return Path.Combine(vsDir, @"VC\Tools\MSVC", visualVersion.GetVisualStudioVCToolsVersion().ToString());
return Path.Combine(vsDir, "VC", "Tools", "MSVC", visualVersion.GetVisualStudioVCToolsVersion().ToString());
}
else
{
Expand Down

0 comments on commit 43dc98a

Please sign in to comment.