From 9c1bbdd1aea83c82d4b42a20083d9a9f3e271dfa Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sat, 12 Aug 2017 14:23:30 -0700 Subject: [PATCH] Fix jekyll oh-my-zsh plugin. --- dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh b/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh index 5e81dcb..ad86862 100644 --- a/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh +++ b/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh @@ -3,7 +3,7 @@ function _jekyll_locate_dir { echo ${JEKYLL_DIR} elif test -f `pwd`/_config.yml ; then pwd - elif test -f ${HOME}/Projects/blog ; then + elif test -f ${HOME}/Projects/blog/_config.yml ; then echo ${HOME}/Projects/blog else echo "Jekyll instance not found!" >&2