From 34e58744cf7d141aebc825bd74e10164a14acf1e Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Tue, 18 Jul 2023 20:12:18 +0200 Subject: [PATCH] Fix broken runtime tests build Follow-up on https://github.com/dotnet/runtime/pull/89005 --- eng/native/ijw/getRefPackFolderFromArtifacts.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/native/ijw/getRefPackFolderFromArtifacts.ps1 b/eng/native/ijw/getRefPackFolderFromArtifacts.ps1 index f9b53286c2b91..3052e4332ffbb 100644 --- a/eng/native/ijw/getRefPackFolderFromArtifacts.ps1 +++ b/eng/native/ijw/getRefPackFolderFromArtifacts.ps1 @@ -14,7 +14,7 @@ $refPackPath = "$repoRoot/artifacts/bin/ref/net$majorVersion.$minorVersion" if (-not (Test-Path $refPackPath)) { - Write-Error "Reference assemblies not found in the artifacts folder at '$refPackPath'. Did you invoke 'build.cmd libs.sfx+libs.oob /p:RefOnly=true' to make sure that refs are built? Did the repo layout change?" + Write-Error "Reference assemblies not found in the artifacts folder at '$refPackPath'. Did you invoke 'build.cmd libs.sfx+libs.oob' to make sure that refs are built? Did the repo layout change?" exit 1 }