From 2c03a6dbac031c5891cea0e4db442f56f2ec908a Mon Sep 17 00:00:00 2001 From: Preston Brown Date: Tue, 24 Oct 2017 13:25:34 -0400 Subject: [PATCH] Preface `exec jekyll` with `bundle install` Preface the `bundle exec jekyll serve` command with a `bundle install` to ensure that all required dependencies are installed before we attempt to use them. --- shell-scripts/run-docs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/shell-scripts/run-docs.sh b/shell-scripts/run-docs.sh index 620d5bf..3c89819 100755 --- a/shell-scripts/run-docs.sh +++ b/shell-scripts/run-docs.sh @@ -1,4 +1,5 @@ #!/bin/bash cd docs +bundle install bundle exec jekyll serve