From 1931c9ac0669f437c5f4afd8188c0b2d882bd1a3 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Sun, 10 Apr 2022 21:11:07 -0500 Subject: [PATCH] Update the unauthenticated git protocol to HTTPS The unauthenticated git protocol is no longer supported. https://github.blog/2021-09-01-improving-git-protocol-security-github/ Fixes #303 --- test/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Vagrantfile b/test/Vagrantfile index dccf3f3..2f228f4 100644 --- a/test/Vagrantfile +++ b/test/Vagrantfile @@ -17,7 +17,7 @@ Vagrant.configure(2) do |config| # install pyenv config.vm.provision "shell", privileged: false, inline: <<-EOS rm -rf ~/.pyenv - git clone git://github.com/yyuu/pyenv.git ~/.pyenv + git clone https://github.com/pyenv/pyenv.git ~/.pyenv cat <<-'PYENV' > ~/.bashrc export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH"