Drop -e for pip install for devstack plugin.sh

Stop using -e for pip install, we shouldn't need to write anything to
the git repo.

Depends-On: Ie68d7da0c0e075826fdba77ba59e05bddb932d7b
Change-Id: Idd82eb792201a02a6645ffafd958d86583e5b010
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-05-25 14:36:33 -04:00
parent d1fb0d402e
commit 969a838d83
1 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ function install_shade {
# BUT - install shade into a virtualenv so that we don't have issues # BUT - install shade into a virtualenv so that we don't have issues
# with OpenStack constraints affecting the shade dependency install. # with OpenStack constraints affecting the shade dependency install.
# This particularly shows up with os-client-config # This particularly shows up with os-client-config
$NODEPOOL_INSTALL/bin/pip install -e $DEST/shade $NODEPOOL_INSTALL/bin/pip install $DEST/shade
fi fi
} }
@ -43,7 +43,7 @@ function install_diskimage_builder {
GITBRANCH["diskimage-builder"]=$DISKIMAGE_BUILDER_REPO_REF GITBRANCH["diskimage-builder"]=$DISKIMAGE_BUILDER_REPO_REF
git_clone_by_name "diskimage-builder" git_clone_by_name "diskimage-builder"
setup_dev_lib "diskimage-builder" setup_dev_lib "diskimage-builder"
$NODEPOOL_INSTALL/bin/pip install -e $DEST/diskimage-builder $NODEPOOL_INSTALL/bin/pip install $DEST/diskimage-builder
fi fi
} }
@ -54,7 +54,7 @@ function install_glean {
GITBRANCH["glean"]=$GLEAN_REPO_REF GITBRANCH["glean"]=$GLEAN_REPO_REF
git_clone_by_name "glean" git_clone_by_name "glean"
setup_dev_lib "glean" setup_dev_lib "glean"
$NODEPOOL_INSTALL/bin/pip install -e $DEST/glean $NODEPOOL_INSTALL/bin/pip install $DEST/glean
fi fi
} }
@ -72,7 +72,7 @@ function install_nodepool {
install_glean install_glean
setup_develop $DEST/nodepool setup_develop $DEST/nodepool
$NODEPOOL_INSTALL/bin/pip install -e $DEST/nodepool $NODEPOOL_INSTALL/bin/pip install $DEST/nodepool
} }
# requires some globals from devstack, which *might* not be stable api # requires some globals from devstack, which *might* not be stable api