diff options
author | Adam Lindberg <eproxus@gmail.com> | 2011-06-28 09:54:44 +0200 |
---|---|---|
committer | Adam Lindberg <eproxus@gmail.com> | 2011-06-28 09:54:44 +0200 |
commit | cd84e37216b28d0b090390a572f22ac4a6512e5b (patch) | |
tree | e1544164322c7edf091b5aa619ee1c4d0d629fdb /oh-my-zsh.sh | |
parent | 3eae652a6d4bc5f280bb7f9d33000f378becf13c (diff) | |
parent | 3552423de3d5ae439dc815b7f9c4cbeab3fbebe8 (diff) | |
download | zsh-cd84e37216b28d0b090390a572f22ac4a6512e5b.tar.gz zsh-cd84e37216b28d0b090390a572f22ac4a6512e5b.tar.bz2 zsh-cd84e37216b28d0b090390a572f22ac4a6512e5b.zip |
Merge remote-tracking branch 'robbyrussell/master'
Diffstat (limited to 'oh-my-zsh.sh')
-rw-r--r-- | oh-my-zsh.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index d72d90cf9..c4522491b 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -43,6 +43,9 @@ then source "$RANDOM_THEME" echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..." else - source "$ZSH/themes/$ZSH_THEME.zsh-theme" + if [ ! "$ZSH_THEME" = "" ] + then + source "$ZSH/themes/$ZSH_THEME.zsh-theme" + fi fi |