Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #15013

Merged
merged 1 commit into from
Apr 3, 2023
Merged

Fix typo #15013

Changes from all commits
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
4 changes: 2 additions & 2 deletions eng/Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -674,14 +674,14 @@ try {
$exitCode = Exec-Process "$dotnetExe" "restore $RepoRoot\buildtools\checkpackages\FSharp.Compiler.Service_notshipped.fsproj"
if ($exitCode -eq 0) {
Write-Host -ForegroundColor Red "Command succeeded but was expected to fail: this means that the fsharp.compiler.service nuget package is already published"
Write-Host -ForegroundColor Red "Modify the version number of FSharp.Compiler.Servoce to be published"
Write-Host -ForegroundColor Red "Modify the version number of FSharp.Compiler.Service to be published"
$verifypackageshipstatusFailed = $True
}

$exitCode = Exec-Process "$dotnetExe" "restore $RepoRoot\buildtools\checkpackages\FSharp.Core_notshipped.fsproj"
if ($exitCode -eq 0) {
Write-Host -ForegroundColor Red "Command succeeded but was expected to fail: this means that the fsharp.core nuget package is already published"
Write-Host -ForegroundColor Red "Modify the version number of FSharp.Compiler.Servoce to be published"
Write-Host -ForegroundColor Red "Modify the version number of FSharp.Compiler.Service to be published"
$verifypackageshipstatusFailed = $True
}
if (-not $verifypackageshipstatusFailed)
Expand Down