Merge "Actually install the requirements repo."

This commit is contained in:
Jenkins 2015-06-18 03:21:12 +00:00 committed by Gerrit Code Review
commit 810dc1d6f4

View File

@ -29,9 +29,6 @@ REQUIREMENTS_DIR=$DEST/requirements
# install_infra() - Collect source and prepare # install_infra() - Collect source and prepare
function install_infra { function install_infra {
# bring down global requirements
git_clone $REQUIREMENTS_REPO $REQUIREMENTS_DIR $REQUIREMENTS_BRANCH
# Install pbr # Install pbr
if use_library_from_git "pbr"; then if use_library_from_git "pbr"; then
git_clone_by_name "pbr" git_clone_by_name "pbr"
@ -41,6 +38,10 @@ function install_infra {
# in via system packages. # in via system packages.
pip_install "-U" "pbr" pip_install "-U" "pbr"
fi fi
# bring down global requirements
git_clone $REQUIREMENTS_REPO $REQUIREMENTS_DIR $REQUIREMENTS_BRANCH
pip_install $REQUIREMENTS_DIR
} }
# Restore xtrace # Restore xtrace