From d16c65df1b143db2e2a240d1ce43b92bd8afff0c Mon Sep 17 00:00:00 2001 From: Daniel Jurek Date: Thu, 2 Mar 2023 13:03:05 -0800 Subject: [PATCH] Pipe npm ci output to Write-Host --- eng/common/spelling/Invoke-Cspell.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/spelling/Invoke-Cspell.ps1 b/eng/common/spelling/Invoke-Cspell.ps1 index 939e5c8d7a..9fc5dec9b9 100644 --- a/eng/common/spelling/Invoke-Cspell.ps1 +++ b/eng/common/spelling/Invoke-Cspell.ps1 @@ -167,7 +167,7 @@ $originalLocation = Get-Location try { Set-Location $PackageInstallCache - npm ci + npm ci | Write-Host # Use the mutated configuration file when calling cspell $command = "npx cspell $JobType --config $CSpellConfigPath --no-must-find-files --root $SpellCheckRoot --relative"