From f9ce8b3df81c8d4c65384979362f7fca64351849 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sat, 21 Mar 2020 20:21:53 -0700 Subject: [PATCH] Use "bundle exec" to wrap jekyll commands. --- dotfiles/zshrc.d/jekyll.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/zshrc.d/jekyll.zsh b/dotfiles/zshrc.d/jekyll.zsh index bcc4e42..6ccf45c 100644 --- a/dotfiles/zshrc.d/jekyll.zsh +++ b/dotfiles/zshrc.d/jekyll.zsh @@ -142,10 +142,10 @@ function jekyll { ${EDITOR} "${FILENAME}" ;; dev) - command jekyll serve -D -I "$@" + command bundle exec jekyll serve -D -I "$@" ;; *) - command jekyll "$@" + command bundle exec jekyll "$@" ;; esac }