oslo-incubator/update.sh
Zhongyue Luo 95f5120e15 Fix typo in update.py
The module name "oslo" is misspelled as "olso".

Change-Id: I66c8163973a09422003c8f2c115a714ac0e16b01
2013-12-30 13:00:22 +08:00

15 lines
331 B
Bash
Executable File

#!/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 oslo.config
python update.py $*