1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

Added message when caching packages

This commit is contained in:
Max Persson 2011-12-07 14:09:43 +01:00
parent 1c4997f5ca
commit 5eae942188

View file

@ -6,6 +6,7 @@
_pip_all() {
# we cache the list of packages (originally from the macports plugin)
if (( ! $+piplist )); then
echo -n " (caching package index...)"
piplist=($(pip search * | cut -d ' ' -f 1 | tr '[A-Z]' '[a-z]'))
fi
}