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