AAE-51793 Restore verbose npm pack logs (#12235)

This commit is contained in:
Domenico Sibilio
2026-09-14 11:40:29 +00:00
committed by GitHub
parent 0bc823beea
commit 2c1405d053
+1 -1
View File
@@ -42,7 +42,7 @@ npm_pack_version() {
local spec=$1 local spec=$1
local attempt local attempt
for attempt in $(seq 1 "$NPM_RETRIES"); do for attempt in $(seq 1 "$NPM_RETRIES"); do
if npm pack "$spec" 2>/dev/null; then if npm pack "$spec"; then
return 0 return 0
fi fi
if [ "$attempt" -lt "$NPM_RETRIES" ]; then if [ "$attempt" -lt "$NPM_RETRIES" ]; then