mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2026-09-10 07:16:18 -04:00
Create virtualenv's bin directory explicitly to avoid CI failures
This commit is contained in:
parent
e83a1f12c2
commit
e339fde2f3
|
|
@ -534,6 +534,7 @@ if [ -d "${VIRTUALENV_PATH}" ] && [ -n "${COMPAT_VIRTUALENV_PATH}" ]; then
|
|||
fi
|
||||
|
||||
if [ ! -e "${VIRTUALENV_PATH}/bin/pydoc" ]; then
|
||||
mkdir -p "${VIRTUALENV_PATH}/bin"
|
||||
cat <<EOS > "${VIRTUALENV_PATH}/bin/pydoc"
|
||||
#!${VIRTUALENV_PATH}/bin/python
|
||||
import pydoc
|
||||
|
|
|
|||
Loading…
Reference in a new issue