-
out of blue i started having this when I do info on the server
Restarting the WSL didn't help, any ideas? |
Beta Was this translation helpful? Give feedback.
Answered by
woss
Apr 27, 2021
Replies: 1 comment 3 replies
-
wow, it seems i have a tendency to answer my own questions :) I never figured out WHY but here is the destructive fix, delete ALL pnpm with store and packages # removes the pnpm
which pnpm | xargs rm
# remove the state and the store
rm -r ~/.pnpm-store/ ~/.pnpm-state.json
# install the pnpm again
curl -f https://get.pnpm.io/v6.js | node - add --global pnpm Then it worked |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
woss
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
wow, it seems i have a tendency to answer my own questions :)
I never figured out WHY but here is the destructive fix, delete ALL pnpm with store and packages
Then it worked