95f5120e15
The module name "oslo" is misspelled as "olso". Change-Id: I66c8163973a09422003c8f2c115a714ac0e16b01
15 lines
331 B
Bash
Executable File
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 $*
|