source pnpm after new install

This commit is contained in:
stubbsta 2025-12-08 13:19:23 +02:00
parent 12f795e04d
commit a0e291c5fa
No known key found for this signature in database

View File

@ -26,9 +26,10 @@ else
curl -fsSL https://get.pnpm.io/install.sh | sh -
fi
# Add pnpm to PATH for this script session
export PNPM_HOME="${PNPM_HOME:-$HOME/.local/share/pnpm}"
export PATH="$PNPM_HOME:$PATH"
# Source bashrc to load pnpm configuration
if [ -f "$HOME/.bashrc" ]; then
source "$HOME/.bashrc"
fi
# Verify pnpm was installed
if ! command -v pnpm >/dev/null 2>&1; then