Skip to content
This repository was archived by the owner on Jan 18, 2025. It is now read-only.

Check for bin directory before cloning pyenv #630

Merged
merged 1 commit into from
Aug 15, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fi

# Travis ships with an old version of PyPy, so install at least version 2.6.
if [[ "${TOX_ENV}" == "pypy" ]]; then
if [ ! -d "${HOME}/.pyenv" ]; then
if [ ! -d "${HOME}/.pyenv/bin" ]; then
git clone https://github.com/yyuu/pyenv.git ${HOME}/.pyenv
fi
${HOME}/.pyenv/bin/pyenv install --skip-existing pypy-2.6.0
Expand Down