summaryrefslogtreecommitdiffstats
path: root/update.sh
blob: 37d4a027daca03a0d2e9f1520f33f5bea7e8b9da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# Make some coffee and read https://code.launchpad.net/bugs/951197

VENV=.update-venv

[ -d $VENV ] || virtualenv -q --no-site-packages $VENV

. $VENV/bin/activate

python setup.py install

python update.py $*