diff --git a/pip_install b/pip_install index 281ef23..d776c7e 100755 --- a/pip_install +++ b/pip_install @@ -8,7 +8,7 @@ mkdir -p .test-tars if $(python -c "import ironic" 2> /dev/null); then echo "Ironic already installed." elif [ -x $ZUUL_CLONER ]; then - $ZUUL_CLONER --cache-dir /opt/git --workspace /tmp git://git.openstack.org openstack/ironic + $ZUUL_CLONER --cache-dir /opt/git --workspace /tmp https://git.openstack.org openstack/ironic pip install /tmp/openstack/ironic else ( cd .test-tars && wget -N http://tarballs.openstack.org/ironic/ironic-master.tar.gz ) @@ -18,7 +18,7 @@ fi if $(python -c "import nova" 2> /dev/null); then echo "Nova already installed." elif [ -x $ZUUL_CLONER ]; then - $ZUUL_CLONER --cache-dir /opt/git --workspace /tmp git://git.openstack.org openstack/nova + $ZUUL_CLONER --cache-dir /opt/git --workspace /tmp https://git.openstack.org openstack/nova pip install /tmp/openstack/nova else ( cd .test-tars && wget -N http://tarballs.openstack.org/nova/nova-master.tar.gz )