From dbd7104fb1632692966cb1380efce6f773703d16 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Tue, 5 May 2020 00:31:46 +0100 Subject: [PATCH] Update log message in Start-PSBootstrap Cover the case where a newer dotnet is installed than is required. --- build.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.psm1 b/build.psm1 index 0550342c78d..72e3472a0eb 100644 --- a/build.psm1 +++ b/build.psm1 @@ -1871,7 +1871,7 @@ function Start-PSBootstrap { Write-Log "dotnet not present. Installing dotnet." } else { - Write-Log "dotnet out of date ($dotNetVersion). Updating dotnet." + Write-Log "dotnet version $dotNetVersion does not match required version. Installing dotnet." } $DotnetArguments = @{ Channel=$Channel; Version=$Version; NoSudo=$NoSudo }