Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tweak matching of illegal configuration combinations to cater for psv…
…3 and psv4
  • Loading branch information
bergmeister committed Jun 3, 2018
commit 98ff8635e52281f2dd29bf13beaf3998e00d77a0
2 changes: 1 addition & 1 deletion buildCoreClr.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[string]$Configuration = "Debug"
)

if ($Configuration -match "PSv3" -and $Framework -eq "netstandard2.0")
if ($Configuration -match "PSv" -and $Framework -eq "netstandard2.0")
{
throw ("{0} configuration is not applicable to {1} framework" -f $Configuration,$Framework)
}
Expand Down