mirror of
1
0
Fork 0

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
This commit is contained in:
Kurt McKee 2022-04-10 21:11:07 -05:00
parent 769767c129
commit 1931c9ac06
1 changed files with 1 additions and 1 deletions

2
test/Vagrantfile vendored
View File

@ -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"