From efd116928d0e75cfdd61661c9dc61d0529d66645 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Tue, 12 May 2026 19:50:44 +0000 Subject: [PATCH] fix(ng-dev/release): silence nvm which command output during release verification --- ng-dev/release/publish/external-commands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ng-dev/release/publish/external-commands.ts b/ng-dev/release/publish/external-commands.ts index 902cc0d61..d033b4c8a 100644 --- a/ng-dev/release/publish/external-commands.ts +++ b/ng-dev/release/publish/external-commands.ts @@ -212,7 +212,7 @@ export abstract class ExternalCommands { // but a shell function. The dot (.) built-in and && operator require shell: true here. // We redirect stdout of nvm install to stderr so that stdout only contains the result of nvm which. const {stdout} = await ChildProcess.spawn( - '. ~/.nvm/nvm.sh && nvm install >&2 && nvm which', + '. ~/.nvm/nvm.sh && nvm install >&2 && nvm which --silent', [], { cwd: projectDir,