Skip to content

Commit

Permalink
Fix mono corelib path in build script (dotnet#53731)
Browse files Browse the repository at this point in the history
  • Loading branch information
huoyaoyuan authored Jun 4, 2021
1 parent 303e42c commit 39d2ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ if ($vs) {

if ($runtimeFlavor -eq "Mono") {
# Search for the solution in mono
$vs = Split-Path $PSScriptRoot -Parent | Join-Path -ChildPath "src\mono\netcore" | Join-Path -ChildPath $vs | Join-Path -ChildPath "$vs.sln"
$vs = Split-Path $PSScriptRoot -Parent | Join-Path -ChildPath "src\mono" | Join-Path -ChildPath $vs | Join-Path -ChildPath "$vs.sln"
} else {
# Search for the solution in coreclr
$vs = Split-Path $PSScriptRoot -Parent | Join-Path -ChildPath "src\coreclr" | Join-Path -ChildPath $vs | Join-Path -ChildPath "$vs.sln"
Expand Down

0 comments on commit 39d2ba3

Please sign in to comment.