From 6aa617ee56ae3b9667498380f6eb791bdc2dc983 Mon Sep 17 00:00:00 2001 From: Wade Simmons Date: Mon, 2 Apr 2012 11:57:56 -0700 Subject: [PATCH] Use $ZSH_CUSTOM when looking for custom themes. --- 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