Use updated path for browbeat in quickstart-extras-requirements

Browbeat is registered as opendev.org/x/ not opendev.org/openstack.
This review corrects that path so that changes in browbeat reviews
are added to the current running job.

Change-Id: I05485a86e4c3a38e604cb0b3af64f79d9be00078
This commit is contained in:
Ronelle Landy 2019-05-10 09:13:26 -04:00
parent 5450a7760b
commit 94492edf78
1 changed files with 4 additions and 4 deletions

View File

@ -160,11 +160,11 @@ fi
# Import gated external repo in oooq - starting with browbeat, tripleo-ha-utils, openstack-ansible-os_tempest,
# ansible-config_template, ansible-role-python_venv_build, ansible-role-collect-logs
EXTERNAL_REPOS="browbeat tripleo-ha-utils tripleo-quickstart-extras openstack-ansible-os_tempest \
ansible-config_template ansible-role-python_venv_build ansible-role-collect-logs"
EXTERNAL_REPOS="x/browbeat openstack/tripleo-ha-utils openstack/tripleo-quickstart-extras openstack/openstack-ansible-os_tempest \
openstack/ansible-config_template openstack/ansible-role-python_venv_build openstack/ansible-role-collect-logs"
for EXTERNAL_REPO in $EXTERNAL_REPOS; do
if [[ -d $TRIPLEO_ROOT/$EXTERNAL_REPO ]]; then
sed -i "s#git+https://opendev.org/openstack/$EXTERNAL_REPO#file://${TRIPLEO_ROOT}/$EXTERNAL_REPO#1" ${TRIPLEO_ROOT}/tripleo-quickstart/quickstart-extras-requirements.txt
if [[ -d ${TRIPLEO_ROOT%openstack}/$EXTERNAL_REPO ]]; then
sed -i "s#git+https://opendev.org/$EXTERNAL_REPO#file://${TRIPLEO_ROOT%openstack}/$EXTERNAL_REPO#1" ${TRIPLEO_ROOT}/tripleo-quickstart/quickstart-extras-requirements.txt
fi
done