Browse code

Added message when caching packages

Max Persson authored on 07/12/2011 at 13:09:43
Showing 1 changed files
... ...
@@ -6,6 +6,7 @@
6 6
 _pip_all() {
7 7
   # we cache the list of packages (originally from the macports plugin)
8 8
   if (( ! $+piplist )); then
9
+    echo -n " (caching package index...)"
9 10
 	piplist=($(pip search * | cut -d ' ' -f 1 | tr '[A-Z]' '[a-z]'))
10 11
   fi
11 12
 }