From 9ab16d43adf27ebfe61d6afb2fa7685375fa0443 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 16 May 2015 14:15:27 +0300 Subject: [PATCH] .zshrc: Don't quote PATHs It screws up the interpolation of ~. Signed-off-by: Alan Orth --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index f5feb14..4682a55 100644 --- a/.zshrc +++ b/.zshrc @@ -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