浏览代码

Add a workaround for Anaconda's `curl` issue

Anaconda's `curl` doesn't work with HTTPS on platfroms where
`/etc/pki/tls/certs/ca-bundle.crt` isn't available.
pull/498/head
Yamashita, Yuu 8 年前
父节点
当前提交
20432dda88
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      plugins/python-build/bin/pyenv-install

+ 2
- 1
plugins/python-build/bin/pyenv-install 查看文件

@ -183,7 +183,8 @@ fi
# fail.)
if [[ "${VERSION_NAME}" == [23]"."* ]]; then
for version in "${VERSION_NAME%-dev}" "${VERSION_NAME%.*}" "${VERSION_NAME%%.*}"; do
PYENV_VERSION="$(pyenv-whence "python${version}" 2>/dev/null | tail -n 1 || true)"
# Anaconda's `curl` doesn't work on platfrom where `/etc/pki/tls/certs/ca-bundle.crt` isn't available (e.g. Debian)
PYENV_VERSION="$(pyenv-whence "python${version}" 2>/dev/null | grep -v conda | tail -n 1 || true)"
if [ -n "${PYENV_VERSION}" ]; then
export PYENV_VERSION
break

正在加载...
取消
保存