From 8df7e8834272d21286309ecd397c9d4222b90e24 Mon Sep 17 00:00:00 2001 From: Daniel Perez Date: Sat, 6 May 2017 19:09:55 +0900 Subject: [PATCH] Use HTTPS URL to download pyenv, fix #14 --- bin/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/utils.sh b/bin/utils.sh index c05cbf7..9bf9f50 100755 --- a/bin/utils.sh +++ b/bin/utils.sh @@ -6,7 +6,7 @@ ensure_python_build_installed() { download_python_build() { echo "Downloading python-build..." - local pyenv_url="git://github.com/yyuu/pyenv.git" + local pyenv_url="https://github.com/yyuu/pyenv.git" git clone $pyenv_url "$(pyenv_path)" }