From c2765de0f74bac117fb6a1b77433c8e6a0012479 Mon Sep 17 00:00:00 2001 From: Tess Gauthier Date: Mon, 7 Feb 2022 13:27:45 -0500 Subject: [PATCH] change build tools chocolatey install error message (#562) --- contrib/win32/openssh/OpenSSHBuildHelper.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/win32/openssh/OpenSSHBuildHelper.psm1 b/contrib/win32/openssh/OpenSSHBuildHelper.psm1 index cf4da9a8c..7551e4641 100644 --- a/contrib/win32/openssh/OpenSSHBuildHelper.psm1 +++ b/contrib/win32/openssh/OpenSSHBuildHelper.psm1 @@ -233,7 +233,7 @@ function Start-OpenSSHBootstrap # check that build-tools were properly installed if(-not (Test-Path $env:vctargetspath)) { - Write-BuildMsg -AsError -ErrorAction Stop -Message "$packageName installation failed with error code $LASTEXITCODE." + Write-BuildMsg -AsError -ErrorAction Stop -Message "visualcpp-build-tools installation failed with error code $LASTEXITCODE." } } }