mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2026-09-10 07:16:18 -04:00
Suppress message about virtualenv-init if -quiet given (fixes #122)
This commit is contained in:
parent
5f87786adf
commit
4e9d697887
|
|
@ -123,7 +123,9 @@ fi
|
|||
# Display setup instruction, if pyenv-virtualenv has not been initialized.
|
||||
# if 'pyenv virtualenv-init -' is not found in "$profile"
|
||||
if [ -z "$PYENV_VIRTUALENV_INIT" ]; then
|
||||
pyenv-virtualenv-init >&2 || true
|
||||
if [ -z "${QUIET}" ]; then
|
||||
pyenv-virtualenv-init >&2 || true
|
||||
fi
|
||||
fi
|
||||
|
||||
pyenv-sh-deactivate --quiet ${VERBOSE+--verbose} || true
|
||||
|
|
|
|||
Loading…
Reference in a new issue