From 51aa7e752c8271ad0e471571b6131cb7b76c2eda Mon Sep 17 00:00:00 2001 From: Trifocals3537 <106492212+Trifocals3537@users.noreply.github.com> Date: Sun, 22 Feb 2026 21:36:38 -0600 Subject: [PATCH] Upgrade pnpm installation to version 10 Installer was failing due to installing version 9. --- seerr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seerr.sh b/seerr.sh index bc5df51..7934529 100755 --- a/seerr.sh +++ b/seerr.sh @@ -23,7 +23,7 @@ function _deps() { } echo "Node LTS installed." echo "Installing pnpm" - npm install -g pnpm@9 >> "$log" 2>&1 || { + npm install -g pnpm@10 >> "$log" 2>&1 || { echo "pnpm failed to install" exit 1 }