.zshrc: Don't quote PATHs

It screws up the interpolation of ~.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
This commit is contained in:
Alan Orth 2015-05-16 14:15:27 +03:00
parent e176bbd5e6
commit 9ab16d43ad
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 1 deletions

2
.zshrc
View File

@ -80,7 +80,7 @@ if [[ -d ~/.pyenv ]]; then
fi
# If a private bin directory exists, add it to PATH
[[ -d ~/bin ]] && PATH="$PATH:~/bin"
[[ -d ~/bin ]] && PATH=$PATH:~/bin
export PATH
export MANPATH