nicojensen.de/vendor/bundle/gems/jekyll-paginate-1.1.0/script/unbundle

9 lines
275 B
Text
Raw Normal View History

2019-03-12 13:49:49 +01:00
#!/bin/bash
RELEASES_URL="https://github.com/jekyll/jekyll/releases"
JEKYLL_VERSION=`curl http://jekyllrb.com/latest_version.txt`
JEKYLL_BUNDLE="jekyll-${JEKYLL_VERSION}.tar.gz"
wget "${RELEASES_URL}/download/v${JEKYLL_VERSION}/${JEKYLL_BUNDLE}"
tar -xzvf ${JEKYLL_BUNDLE}