Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
1617f4ff
Unverified
Commit
1617f4ff
authored
Oct 01, 2020
by
Goose
Committed by
GitHub
Oct 01, 2020
Browse files
pip: move plugin cache to XDG folder (#9299)
parent
f776af2a
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/pip/pip.plugin.zsh
View file @
1617f4ff
...
@@ -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
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment