Don't change directory during install

This fixes an issue with Devstack using relative paths and assuming
the current directory is its own.

Change-Id: I6ff7a5672b8bc09c3c71575f3ebc2d13aab024d2
This commit is contained in:
Kristi Nikolla 2017-05-30 11:56:58 -04:00
parent cf40e932ef
commit 819b60405a
1 changed files with 1 additions and 4 deletions

View File

@ -13,10 +13,7 @@
# under the License.
function install_mixmatch {
cd $MIXMATCH_DIR
pip_install -r requirements.txt
sudo python setup.py install
pip_install $MIXMATCH_DIR
pip_install uwsgi
}