From 0be2e9e6f8aed297f2722a8f0192542865bc5699 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Wed, 2 Oct 2019 08:10:25 -0700 Subject: [PATCH] Ensure that oh-my-zsh file exists not just the dir --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 7573251..7eebe56 100644 --- a/.zshrc +++ b/.zshrc @@ -1,7 +1,7 @@ local oh_my_zsh="$HOME/.oh-my-zsh" source $HOME/.ssh-sentinel -if [[ -d "$oh_my_zsh" ]]; then +if [[ -f "$oh_my_zsh/oh-my-zsh.sh" ]]; then local theme="jispwoso" export ZSH="$oh_my_zsh"