[zsh] Really for real fix the &> and >& IO redirection confusion

init_env_vi was still using it
This commit is contained in:
Eryn Wells 2022-11-02 11:05:43 -07:00
parent adfc594420
commit 386b88ee9e

View file

@ -22,7 +22,7 @@ fi
export PYTHONPATH
if which virtualenvwrapper.sh 1>/dev/null 2>&1; then
if which virtualenvwrapper.sh &> /dev/null; then
export WORKON_HOME="$HOME/src/py/.envs"
source `which virtualenvwrapper.sh`
fi