Sfoglia il codice sorgente

Merge pull request #983 from deepseek-harness/codex/install-pnpm-stderr

fix(install): show pnpm version errors
Tianyi Cui 1 mese fa
parent
commit
089f921663
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      scripts/install.sh

+ 1 - 1
scripts/install.sh

@@ -215,7 +215,7 @@ fi
 
 
 # pnpm is the only dependency we offer to install for you.
 # pnpm is the only dependency we offer to install for you.
 if command -v pnpm >/dev/null 2>&1; then
 if command -v pnpm >/dev/null 2>&1; then
-  info "pnpm $(pnpm --version 2>/dev/null) ... ok"
+  info "pnpm $(pnpm --version) ... ok"
 else
 else
   warn "pnpm is not installed."
   warn "pnpm is not installed."
   if confirm "Install pnpm now?" Y; then
   if confirm "Install pnpm now?" Y; then