From 42b2a0b8b3339a222a3b7a2953691c1b365e91f1 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 939e5c8d7a38..9fc5dec9b991 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"