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

VENV=.update-venv

# -qq gets rid of the deprecation warning, in time we can
# remove --no-site-packages as it's the default now
[ -d $VENV ] || virtualenv -qq --no-site-packages $VENV

. $VENV/bin/activate

# need oslo-config for bootstrapping, be quiet for UX reasons
pip -q install http://tarballs.openstack.org/oslo-config/oslo-config-2013.1b4.tar.gz

python update.py $*