浏览代码

Fix pattern match for PyPy versions

pull/956/head
Yamashita, Yuu 9 年前
父节点
当前提交
0cbfcf09d4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      plugins/python-build/bin/pyenv-install

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

@ -200,7 +200,7 @@ if [ -z "${PYENV_BOOTSTRAP_VERSION}" ]; then
done
done
;;
"pypy-dev" | "pypy-"*"-src" | "pypy3-"*"-src" )
"pypy"*"-dev" | "pypy"*"-src" )
# PyPy/PyPy3 requires existing Python 2.7 to build
if [ -n "${PYENV_RPYTHON_VERSION}" ]; then
PYENV_BOOTSTRAP_VERSION="${PYENV_RPYTHON_VERSION}"

正在加载...
取消
保存