From 9f112a569307338e7e604a420fcbf90524c49fee Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Fri, 14 Jun 2019 13:44:32 -0400 Subject: [PATCH] dev_install: fetch git/gerrit from opendev To avoid warning about the redirection, let's use the new URL. Change-Id: I053ce25b7531fbec8bbca6dfb087acf13afcf511 --- files/dev_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/dev_install.sh b/files/dev_install.sh index 0b2f540..99553eb 100644 --- a/files/dev_install.sh +++ b/files/dev_install.sh @@ -14,11 +14,11 @@ function cherrypick { fi if [ ! -d "$PROJ_NAME" ]; then - git clone "https://git.openstack.org/openstack/$PROJ_NAME" + git clone "https://opendev.org/openstack/$PROJ_NAME" fi cd "$PROJ_NAME" for REFSPEC in $REFSPECS; do - git fetch "https://review.openstack.org/openstack/$PROJ_NAME" "$REFSPEC" + git fetch "https://review.opendev.org/openstack/$PROJ_NAME" "$REFSPEC" git cherry-pick FETCH_HEAD || git cherry-pick --abort done