libretime/jekyll.sh

16 lines
312 B
Bash
Raw Normal View History

2021-08-16 17:44:19 +02:00
#!/usr/bin/env bash
2020-05-19 17:27:24 +02:00
echo "Installing Ruby"
2020-11-18 20:18:27 +01:00
apt-get update -y && apt-get install -y ruby-full build-essential zlib1g-dev
2020-05-19 17:27:24 +02:00
2020-05-19 23:10:56 +02:00
export GEM_HOME=".gems"
export PATH=".gems/bin:$PATH"
2020-05-19 17:27:24 +02:00
echo "Installing Jekyll"
2020-11-18 21:03:40 +01:00
2021-08-16 17:44:19 +02:00
cd docs || (echo "Could not cd in docs" && exit 1)
2020-05-19 17:27:24 +02:00
gem install jekyll bundler
# Running Jekyll
2020-11-18 22:37:35 +01:00
jekyll serve