Use "bundle exec" to wrap jekyll commands.

This commit is contained in:
David Tomaschik
2020-03-21 20:21:53 -07:00
parent 69c1184b58
commit f9ce8b3df8

View File

@@ -142,10 +142,10 @@ function jekyll {
${EDITOR} "${FILENAME}" ${EDITOR} "${FILENAME}"
;; ;;
dev) dev)
command jekyll serve -D -I "$@" command bundle exec jekyll serve -D -I "$@"
;; ;;
*) *)
command jekyll "$@" command bundle exec jekyll "$@"
;; ;;
esac esac
} }