Unverified Commit 1617f4ff authored by Goose's avatar Goose Committed by GitHub
Browse files

pip: move plugin cache to XDG folder (#9299)

parent f776af2a
...@@ -9,7 +9,11 @@ ...@@ -9,7 +9,11 @@
# If you would like to clear your cache, go ahead and do a # If you would like to clear your cache, go ahead and do a
# "zsh-pip-clear-cache". # "zsh-pip-clear-cache".
ZSH_PIP_CACHE_FILE=~/.pip/zsh-cache if [[ -d "${XDG_CACHE_HOME:-$HOME/.cache}/pip" ]]; then
ZSH_PIP_CACHE_FILE="${XDG_CACHE_HOME:-$HOME/.cache}/pip/zsh-cache"
else
ZSH_PIP_CACHE_FILE=~/.pip/zsh-cache
fi
ZSH_PIP_INDEXES=(https://pypi.org/simple/) ZSH_PIP_INDEXES=(https://pypi.org/simple/)
zsh-pip-clear-cache() { zsh-pip-clear-cache() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment