mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
15 lines
238 B
Bash
15 lines
238 B
Bash
#!/bin/bash
|
|
|
|
echo $0
|
|
set -e
|
|
set -x
|
|
|
|
# cache pypi downloads
|
|
if [ -z $PIP_DOWNLOAD_CACHE ]; then
|
|
export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache
|
|
fi
|
|
|
|
apt-get install --yes --no-install-recommends python-pip
|
|
|
|
pip install --upgrade $@
|