From 816f717aba76b7a346855ced2f206f8937983d13 Mon Sep 17 00:00:00 2001 From: Ben Mitchell Date: Sun, 12 Feb 2012 14:58:36 -0800 Subject: [PATCH] Theme loading should use $ZSH_CUSTOM rather than $ZSH/custom. --- oh-my-zsh.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 732a403b7..b00a746ea 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -65,11 +65,11 @@ 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" + source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" fi fi fi