9 lines
275 B
Text
9 lines
275 B
Text
|
#!/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}
|