Upgrade golang & chezmoi. fix PNPM_HOME bug

This commit is contained in:
Tony Blyler 2023-02-13 21:26:19 -05:00
parent f18d06259e
commit 49e1cdd1b0
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
golang 1.19.4 golang 1.20
chezmoi 2.29.1 chezmoi 2.30.1
nodejs lts nodejs lts

View file

@ -53,7 +53,7 @@ if command -v pnpm &> /dev/null; then
if [[ "$OSTYPE" =~ ^darwin ]]; then if [[ "$OSTYPE" =~ ^darwin ]]; then
export PNPM_HOME="${HOME}/Library/pnpm" export PNPM_HOME="${HOME}/Library/pnpm"
export PATH="$PNPM_HOME:$PATH" export PATH="$PNPM_HOME:$PATH"
mkdir -p PNPM_HOME mkdir -p "$PNPM_HOME"
fi fi
fi fi