From ba4f5c1da95e768b31f0b3736e66ac0d9f0450c3 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Wed, 18 Dec 2019 08:05:05 -0800 Subject: [PATCH] add a little script to install jekyll Tired of losing 30+ minutes trying to get a non-root ruby/gem install working! --- docs/install-jekyll.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 docs/install-jekyll.sh diff --git a/docs/install-jekyll.sh b/docs/install-jekyll.sh new file mode 100755 index 000000000..3d3c02c21 --- /dev/null +++ b/docs/install-jekyll.sh @@ -0,0 +1,5 @@ +#!/bin/sh +gem install --user-install bundler jekyll +GEM_HOME=$HOME/.gem bundle install + +echo "You can now use 'GEM_HOME=$HOME/.gem bundle exec jekyll serve' to test the docs locally"