File: unbundle

package info (click to toggle)
ruby-jekyll-paginate 1.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 168 kB
  • sloc: ruby: 283; sh: 7; makefile: 4
file content (8 lines) | stat: -rwxr-xr-x 275 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/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}