From b369a52132ef1a666cc9f5d012ab3714c4547d6d Mon Sep 17 00:00:00 2001 From: Ben Mitchell Date: Mon, 27 Feb 2012 23:35:05 -0800 Subject: [PATCH] Fix mistaken removal of one too many $ZSHes. We now fall back to $ZSH/themes/ if $ZSH_CUSTOM/$ZSH_THEME.zsh-theme does not exist. --- oh-my-zsh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index b00a746ea..4122810fe 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -69,7 +69,7 @@ else then source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" else - source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" + source "$ZSH/themes/$ZSH_THEME.zsh-theme" fi fi fi