Revision 8fae0052c8e0888953da159045909ea2c1336b3d authored by Semen Zhydenko on 11 February 2018, 02:58:13 UTC, committed by jekyllbot on 11 February 2018, 02:58:13 UTC
Merge pull request 6764
1 parent 33017b7
Raw File
proof
#!/usr/bin/env bash
#
# Usage:
#   script/proof

set -e

function msg {
  printf "\e[0;37m==> $1\e[0m\n"
}

IGNORE_HREFS=$(ruby -e 'puts %w{
  Chrononaut
  twitter.com
  nearlyfreespeech.net
  eduardoboucas.com
  github.com\/matrix9180
}.map{|h| "/#{h}/"}.join(",")')
SOURCE="docs"
DESTINATION="_site"

export PROOF=true
export NOKOGIRI_USE_SYSTEM_LIBRARIES=true

# 1.
msg "Installing..."
bundle install -j8 > /dev/null || bundle install > /dev/null

# 2.
msg "Building..."
bundle exec jekyll build -s $SOURCE -d $DESTINATION --trace

# 3.
msg "Proofing..."
time bundle exec htmlproofer ./$DESTINATION --allow-hash-href --url-ignore $IGNORE_HREFS $@
back to top