chiark / gitweb /
654bc6333592572343c5ec44b2b53e8c2cf01b14
[fdroidserver.git] / buildserver / provision-pip
1 #!/bin/bash
2
3 set -e
4 set -x
5
6 # cache pypi downloads
7 if [ -z $PIP_DOWNLOAD_CACHE ]; then
8     export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache
9 fi
10
11 apt-get install --yes --no-install-recommends python-pip
12
13 pip install --upgrade $@