From 2c1405d0531b74ddca95029e31ec057b7e36c2bf Mon Sep 17 00:00:00 2001 From: Domenico Sibilio Date: Mon, 14 Sep 2026 13:40:29 +0200 Subject: [PATCH] AAE-51793 Restore verbose npm pack logs (#12235) --- scripts/github/build/npm-check-bundles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/github/build/npm-check-bundles.sh b/scripts/github/build/npm-check-bundles.sh index 9ced0c16ae..960b15c603 100755 --- a/scripts/github/build/npm-check-bundles.sh +++ b/scripts/github/build/npm-check-bundles.sh @@ -42,7 +42,7 @@ npm_pack_version() { local spec=$1 local attempt for attempt in $(seq 1 "$NPM_RETRIES"); do - if npm pack "$spec" 2>/dev/null; then + if npm pack "$spec"; then return 0 fi if [ "$attempt" -lt "$NPM_RETRIES" ]; then