Remove grep -v ...echo from pyenv init, probably needed before

This commit is contained in:
2024-03-06 22:22:39 +08:00
parent d8dff46fdc
commit 02597326f1

View File

@@ -93,7 +93,7 @@ if [ -z "$PYENV_DISABLE" ] && [ -d "$PYENV_ROOT/bin" ]; then
if [ "$PYENV_MAJOR_VERSION" -gt 1 ]; then if [ "$PYENV_MAJOR_VERSION" -gt 1 ]; then
eval "$(pyenv init --path)" eval "$(pyenv init --path)"
fi fi
eval "$(pyenv init -|grep -v '^echo')" eval "$(pyenv init -)"
fi fi
# perl # perl