From 5a680ccabca3035e6388d80de21a8203effe45f9 Mon Sep 17 00:00:00 2001 From: Robin Campbell Joy Date: Sat, 4 Feb 2012 17:00:40 +0100 Subject: [PATCH] Fixed path to custom folder for themes if ZSH_CUSTOM is set --- oh-my-zsh.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 732a403b7..4122810fe 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -65,9 +65,9 @@ then else if [ ! "$ZSH_THEME" = "" ] then - if [ -f "$ZSH/custom/$ZSH_THEME.zsh-theme" ] + if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ] then - source "$ZSH/custom/$ZSH_THEME.zsh-theme" + source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" else source "$ZSH/themes/$ZSH_THEME.zsh-theme" fi